Last active
October 2, 2020 18:37
-
-
Save VFDan/fdfe17f0b593b2668116a7e584a77318 to your computer and use it in GitHub Desktop.
Makes the link in the Wikipedia dropdown watchlist link to the edit watchlist page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Wikipedia Watchlist Link | |
// @namespace https://vfdan.github.io | |
// @version 1.0 | |
// @description Makes the link in the Wikipedia dropdown watchlist link to the edit watchlist page | |
// @author VFDan | |
// @match *.wikipedia.org/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.getElementById('pt-watchlist').firstElementChild.href = '/wiki/Special:EditWatchlist'; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment