User:Micke/monobook.js

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// Länkar till olika sidor
// Modifierad http://en.wikipedia.org/wiki/Wikipedia:WikiProject_User_scripts/Scripts/Add_purge_to_tabs
addOnloadHook(function () {
    addPortletLink('p-site', '', '-------------------------');
    addPortletLink('p-site', '/wiki/commons:Special:Watchlist', 'commons');
    addPortletLink('p-site', '/wiki/en:Special:Watchlist', 'enwiki');
    addPortletLink('p-site', '/wiki/m:Special:Watchlist', 'meta');
    addPortletLink('p-site', '/wiki/sv:Special:Watchlist', 'svwiki');
    addPortletLink('p-site', 'irc://irc.freenode.net/wikipedia-sv', 'IRC');
    addPortletLink('p-site', 'http://www.ip-adress.com/', 'ip-adress.com'); 
 
});
 
//
 
// Sökmotorlänkar
//http://en.wikipedia.org/wiki/Wikipedia:WikiProject_User_scripts/Scripts/Google_link
 
addOnloadHook(function () {
    if (wgCanonicalNamespace == "Special")
        return;  // no links for special pages
 
    var title = wgTitle;
    if (wgCanonicalNamespace != "")
        title = title.replace(/^.*\//, "");  // subpage name only
 
    var query = encodeURIComponent('"'+title+'"' ); 
    addPortletLink('p-cactions', 'http://www.google.com/search?ie=utf-8&oe=utf-8&q='+query,
                   'google', 't-googlesearch', 'Search Google for "'+title+'"', 'G');
});
 
//