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 Interesting Questions alternate highlighting | |
// @namespace http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F | |
// @version 0.2 | |
// @description Changes Stack Exchange websites 'favorite tags' highlighting to just the tag. | |
// @author ṧнʊß | |
// @match *://*.stackexchange.com/* | |
// @match *://*.stackoverflow.com/* | |
// @match *://*.superuser.com/* | |
// @match *://*.serverfault.com/* |
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 Highlight answerer's comments | |
// @namespace http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F | |
// @version 0.3 | |
// @description Highlight's the names of answerer's on SE websites | |
// @author ṧнʊß (http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F) | |
// @require https://raw.githubusercontent.com/hazzik/livequery/master/dist/jquery.livequery.min.js | |
// @match *://*.stackexchange.com/* | |
// @match *://*.stackoverflow.com/* | |
// @match *://*.superuser.com/* |
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 SE Extra, Optional Features | |
// @namespace http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F | |
// @version 0.6 | |
// @description Adds a bunch of optional 'features' to the StackExchange sites. | |
// @author ṧнʊß (http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F) | |
// @match *://*.stackexchange.com/* | |
// @match *://*.stackoverflow.com/* | |
// @match *://*.superuser.com/* | |
// @match *://*.serverfault.com/* |
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 Favourites enhancer | |
// @namespace http://stackexchange.com/users/4337810/%E1%94%95%E1%96%BA%E1%98%8E%E1%95%8A | |
// @version 1.1 | |
// @description Allows you to tag favourites and add personal notes to them | |
// @author ᔕᖺᘎᕊ (http://stackexchange.com/users/4337810/%E1%94%95%E1%96%BA%E1%98%8E%E1%95%8A) | |
// @match *://*.stackexchange.com/* | |
// @match *://*.stackoverflow.com/* | |
// @match *://*.superuser.com/* | |
// @match *://*.serverfault.com/* |
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/* |
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
(function(){ | |
$("#content").width(1360); | |
$("#post-editor").removeClass("post-editor"); | |
$("#post-editor").width(1360); | |
$(".community-option").css("float","left"); | |
$(".wmd-container").css("float","left"); | |
$("#wmd-preview").css({"clear":"none","margin-left":"20px","float":"right"}); | |
$('.wmd-button-bar').css('float', 'none'); | |
})() |
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 View revision comments quickly | |
// @namespace http://stackexchange.com/users/4337810/ | |
// @version 1.0 | |
// @description Adds the latest revision's comment as a tooltip for quick and easy viewing | |
// @author ᔕᖺᘎᕊ (http://stackexchange.com/users/4337810/) | |
// @match *://*.stackexchange.com/* | |
// @match *://*.stackoverflow.com/* | |
// @match *://*.superuser.com/* | |
// @match *://*.serverfault.com/* |
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 Get asked date | |
// @namespace http://stackexchange.com/users/4337810/ | |
// @version 1.0 | |
// @description Adds a tooltip to the 'modified'/'answered' parts of questions on the homepage that tells you when the question was asked. | |
// @author ᔕᖺᘎᕊ (http://stackexchange.com/users/4337810/) | |
// @match *://*.stackexchange.com/* | |
// @match *://*.stackoverflow.com/* | |
// @match *://*.superuser.com/* | |
// @match *://*.serverfault.com/* |
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 Area 51 example question revisions link | |
// @namespace http://stackexchange.com/users/4337810/ | |
// @version 1.0 | |
// @description Adds a 'revisions' link for Area51 example questions | |
// @author ᔕᖺᘎᕊ (http://stackexchange.com/users/4337810/) | |
// @match http://area51.stackexchange.com/proposals/* | |
// @grant none | |
// ==/UserScript== |
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 SE privileges linkifier | |
// @namespace http://stackexchange.com/users/4337810/ | |
// @version 1.0 | |
// @description Converts the divs on the privileges page of every SE site into anchors to make them | |
// @author ᔕᖺᘎᕊ (http://stackexchange.com/users/4337810/) | |
// @match *://*.stackexchange.com/help/privileges | |
// @match *://*.stackoverflow.com/help/privileges | |
// @match *://*.superuser.com/help/privileges | |
// @match *://*.serverfault.com/help/privileges |
OlderNewer