User:Qwerfjkl/scripts/wikibreak
< Qwerfjkl's scripts | JS | Base template
This is a script for enforcing wikibreaks, so you can only edit between certain hours. Just before the installation code (see § Installation), add
window.HourStart = XX
window.HourEnd = XX
replacing XX with the hours you want to be able to edit (0-24, UTC). For example, if you want to edit from 3PM to 7PM, add
window.HourStart = 15
window.HourEnd = 18 // The hour -1, otherwise it will last from 3PM to 7:59PM
mw.loader.load('//en.wikipedia.org/w/index.php?title=User%3AQwerfjkl%2Fscripts%2Fwikibreak.js&action=raw&ctype=text/javascript'); // [[User:Qwerfjkl/scripts/wikibreak.js]] (installation text)
Description | Script for enforcing wikibreaks |
---|---|
Author(s) | Qwerfjkl |
Status | Stable |
First released | March 10, 2022 |
Updated | March 10, 2022 |
Skins | Vector 2022 (tested); other skins untested |
Source | User:Qwerfjkl/scripts/wikibreak.js |
Installation
[edit]Warning: You are not logged in. Please create an account or log in to proceed. After installing the script, bypass your cache.
- Method 1
Click on the button below. If it doesn't appear after a few seconds you can enable script installer in the "Advanced" section of Special:Preferences#mw-prefsection-gadgets, or try this link.
- Method 2
This can only be used on the English Wikipedia.
- Place the following at the bottom of your common.js page or your skin.js page:
importScript('User:Qwerfjkl/scripts/wikibreak.js'); // [[User:Qwerfjkl/scripts/wikibreak.js]]
- Press (ignore any error warnings).
- Method 3
This can be used on any Wikimedia project (for instance, globally in your global.js on the Meta-Wiki).
- Place the following on the bottom of your common.js page or your skin.js page:
mw.loader.load('https://en.wikipedia.org/w/index.php?title=User%3AQwerfjkl%2Fscripts%2Fwikibreak.js&action=raw&ctype=text/javascript'); // [[User:Qwerfjkl/scripts/wikibreak.js]]
- Press (ignore any error warnings).