Created
July 12, 2015 12:08
-
-
Save shu8/b1296d500b48161b2284 to your computer and use it in GitHub Desktop.
A userscript that adds the popup for related tags shown on the tag wiki pages.
This file contains 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 Enable tag popup on tag wiki pages | |
// @namespace http://stackexchange.com/users/4337810/ | |
// @version 1.0 | |
// @description A userscript that adds the popup for related tags shown on the tag wiki pages. | |
// @author ᔕᖺᘎᕊ (http://stackexchange.com/users/4337810/) | |
// @match *://*.stackexchange.com/tags/* | |
// @match *://*.stackoverflow.com/tags/* | |
// @match *://*.superuser.com/tags/* | |
// @match *://*.serverfault.com/tags/* | |
// @match *://*.askubuntu.com/tags/* | |
// @match *://*.stackapps.com/tags/* | |
// @match *://*.mathoverflow.net/tags/* | |
// @grant none | |
// ==/UserScript== | |
$('.no-tag-menu').removeClass('no-tag-menu'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For more info: http://meta.stackexchange.com/a/260521/260841