Jump to content

User:X!/monobook.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by X! (talk | contribs) at 11:09, 10 July 2009 (Remove some). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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.
importScript('User:Dr pda/prosesize.js'); //[[User:Dr pda/prosesize.js]]

importScript('Wikipedia:WikiProject User scripts/Scripts/Replace');

importScript('User:AzaToth/morebits.js');
importScript('User:Ioeth/friendlyshared.js');
importScript('User:Ioeth/friendlytag.js');
importScript('User:Ioeth/friendlyclock.js');
importScript('User:Ioeth/friendlytabs.js');

importScript("User:Ais523/topcontrib.js");

importScript('User:AWeenieMan/furme.js');

importScript('User:Ais523 non-admin/adminrights.js');

importScript('User:AzaToth/twinkle.js');

importScript('User:Mr.Z-man/hideClosedAFD.js');

importScript('User:AndyZ/peerreviewer.js');

importScript('User:Mr.Z-man/closeAFD.js');

importScript('User:X!/hidehugglecontribs.js');

importScript('User:TheDJ/qui.js');

TwinkleConfig = {
        revertMaxRevisions              :       50,
        userTalkPageMode                :       'tab',
        showSharedIPNotice              :       true,
        openTalkPage                    :       [ 'vand' ],
        openTalkPageOnAutoRevert        :       false,
        summaryAd                       :       "",
        deletionSummaryAd               :       "",
        protectionSummaryAd             :       "",
        watchSpeedyPages                :       [ ],
        watchProdPages                  :       false,
        openUserTalkPageOnSpeedyDelete  :       [ ],
        watchRevertedPages              :       [],
        markRevertedPagesAsMinor        :       [ 'agf', 'norm', 'vand', 'torev' ],
        deleteTalkPageOnDelete          :       false,
        watchWarnings                   :       false,
        markAIVReportAsMinor            :       true,
        markSpeedyPagesAsMinor          :       true,
        offerReasonOnNormalRevert       :       true,
        orphanBacklinksOnSpeedyDelete   :       {orphan:false, exclude:[ 'g1', 'g2', 'g3', 'g4', 'g5', 'g10', 'g11', 'g12', 'a1', 'a3', 'a7', 'a9', 'i3', 'i4', 'i5', 'i6', 'i7', 'i9', 'i11', 'u3', 't1', 't2', 'g6', 'g7', 'g8', 'g9', 'a2', 'a4', 'a5', 'a6', 'a8' ]}
};
 
FurMeConfig = {
        actionOnSubmit                  :  'preview',
        cleanAmazonURLs                 :  true,
        furmeLocation                   :  'filetoc',
        imageRemovalMethod              :  'comment',
        openArticleMode                 :  'none',
        renameMethod                    :  'ifd',
        scrollerMax                     :  10,
        scrollerSkipDone                :  true,
        watchMyEdits                    :  false,
};
 
FriendlyConfig = {
        summaryAd                       :       "",
        topWelcomes                     :       false,
        watchWelcomes                   :       false,
        markWelcomesAsMinor             :       true,
        insertHeadings                  :       true,
        welcomeHeading                  :       "== Welcome ==",
        insertUsername                  :       true,
        insertSignature                 :       true,
        quickWelcomeMode                :       "auto",
        quickWelcomeTemplate            :       "Welcome",
        maskTemplateInSummary           :       true,
        markSharedAsMinor               :       true,
        groupByDefault                  :       true,
        watchTaggedPages                :       false,
        markTaggedPagesAsMinor          :       true
};

function remind_strike() // WARNING: This tool assumes you have will power and serves only as a reminder
  {
  if (document.title.indexOf("Delete ") != -1)
    {
    alert ("Delete is an admin tool, you are on wikibreak.");
    }
  if (document.title.indexOf("Editing ") != -1)
    {
    alert ("Are you sure you want to edit? You are on wikibreak.");
    }
  if (document.title.indexOf("Change protection level for ") != -1)
    {
    alert ("Protecting is an admin tool, you are on wikibreak.");
    }
  if (document.title.indexOf("Block user") != -1)
    {
    alert ("Blocking is an admin tool, you are on wikibreak.");
    }
  if (document.title.indexOf("Unblock user") != -1)
    {
    alert ("Unblocking is an admin tool, you are on wikibreak.");
    }
  if (document.title.indexOf("View and restore deleted pages") != -1)
    {
    alert ("Viewing deleted material is an admin tool, you are on wikibreak.");
    }
  if (document.title.indexOf("Deleted contributions") != -1)
    {
    alert ("Listing deleted contributions is an admin tool, you are on wikibreak.");
    }
  if (document.title.indexOf("User rights management") != -1)
    {
    alert ("Changing user rights is an admin tool, you are on wikibreak.");
    }
  if ((document.body.innerHTML.indexOf("<div id=\"protectedpagewarning") != -1) && (document.title.indexOf("Editing ") != -1))
    {
    alert ("Editing a protected page is an admin tool, you are on wikibreak.");
    }
  }
//addOnloadHook(remind_strike);