Jump to content

User:AzaToth/addee.js

From Wikipedia, the free encyclopedia
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.
/* add ee */
addOnloadHook(function() {
  if (document.URL.search("=") == -1 && !document.getElementById("ca-viewsource") && document.URL.search("/Special:") == -1) { //viewing a page that isn't protected or special
    addTab("javascript:location = document.URL + '?action=edit&externaledit=true';", "ee", "ca-exted", "external editor", "");
  }
  else if (document.title.indexOf("Editing ") == 0) { //this line from techniques subpage of WP:US
    addTab("javascript:location = document.URL + '&externaledit=true';", "ee", "ca-exted", "external editor", "");
  }
}
);