Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// [[User:Quarl/external_editor.js]] - add "ext-edit" tab

// <pre><nowiki>

function external_editor_load() {
    if (wikiPage.protectedP) return;
    if (wikiPage.nsSpecialP) return;

    var url = wikiPage.qurl + '&action=edit&externaledit=true';

    addTab(url, "ext-edit", "ca-exted", "external editor");
}

$(external_editor_load);

// </nowiki></pre>