User:Micke/monobook.js

From Meta, a Wikimedia project coordination wiki

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
$(function () {
    mw.util.addPortletLink('p-navigation', '', '-------------------------');
        mw.util.addPortletLink('p-navigation', '/wiki/commons:Special:Watchlist', 'commons');
    mw.util.addPortletLink('p-navigation', '/wiki/en:Special:Watchlist', 'enwiki');
    mw.util.addPortletLink('p-navigation', '/wiki/sv:Special:Watchlist', 'svwiki');
    mw.util.addPortletLink('p-navigation', '/wiki/se:chapter:Special:Watchlist', 'wikimedia sverige');
    mw.util.addPortletLink('p-navigation', '/wiki/n:sv:Special:Watchlist', 'wikinews');
    mw.util.addPortletLink('p-navigation', 'irc://irc.freenode.net/wikipedia-sv', 'IRC');
    mw.util.addPortletLink('p-navigation', 'http://www.ip-adress.com/', 'ip-adress.com'); 

});

//

// Sökmotorlänkar
//http://en.wikipedia.org/wiki/Wikipedia:WikiProject_User_scripts/Scripts/Google_link

$(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+'"' ); 
    mw.util.addPortletLink('p-cactions', 'http://www.google.com/search?ie=utf-8&oe=utf-8&q='+query,
                   'google', 't-googlesearch', 'Search Google for "'+title+'"', 'G');
});

//