Jump to content

User:CosmLearner/twinkleoptions.js

From Simple English Wikipedia, the free encyclopedia

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
// twinkleoptions.js: personal Twinkle preferences file

// NOTE: The easiest way to change your Twinkle preferences is by using the
// Twinkle preferences panel, at [[Wikipedia:Twinkle/Preferences]].

// This file is AUTOMATICALLY GENERATED. Any changes you make (aside from
// changing the configuration parameters in a valid-JavaScript way) will be
// overwritten the next time you click "save" in the Twinkle preferences
// panel. If modifying this file, make sure to use correct JavaScript.

window.Twinkle = window.Twinkle || {};

window.Twinkle.prefs = {
  twinkle: {
    notifyUserOnSpeedyDeletionNomination: [
      'db', 'g1', 'g2', 'g3', 'g4', 'g5', 'g10', 'g11', 'g12',
      'a1', 'a2', 'a3', 'a5', 'f1', 't2'
    ],
    welcomeUserOnSpeedyDeletionNotification: [
      'db', 'g1', 'g2', 'g3', 'g4', 'g10', 'g11', 'g12',
      'a1', 'a2', 'a3', 'a5', 'f1', 't2'
    ]
  },
  friendly: {}
};

export default window.Twinkle.prefs;