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
// @link https://github.com/adampietrasiak/jquery.initialize | |
// @author Adam Pietrasiak | |
// @author Damien Bezborodov | |
;(function($) { | |
var seen = []; // Tracks elements that have previously been initialized. | |
// MutationSelectorObserver represents a selector and it's associated initialization callback. | |
var MutationSelectorObserver = function(selector, callback) { | |
this.selector = selector; | |
this.callback = callback; |
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 HF PM-Like New Alert Notice | |
// @namespace HF PM-Like New Alert Notice | |
// @version 0.2 | |
// @description Shows a PM-Like Notice when you have a new HackForums alert. | |
// @author Cammy | |
// @include *hackforums.net* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js | |
// @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 PicturePub Batch Downloader | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Add download links and a batch download button for PixHost on Picturepub. Useful if the photos aren't added to an album. | |
// @author You | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @match *.pixhost.to/images/* | |
// @include *picturepub.net/index.php?threads* | |
// @grant 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
Test git |
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
//META{"name":"HideBlockedUsers"}*// | |
class HideBlockedUsers { | |
constructor () { | |
this.messageObserver = new MutationObserver(() => {}); | |
} | |
getName () {return "HideBlockedUsers";} | |
getDescription () {return "Completely hide messages from blocked users.";} |
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 HF Auto-Refresh Reputation | |
// @namespace HF Auto-Refresh Reputation | |
// @version 0.1 | |
// @description HF Auto-Refresh Reputation | |
// @author You | |
// @match *://hackforums.net/reputation.php?uid=* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @require https://raw.githubusercontent.com/pie6k/jquery.initialize/master/jquery.initialize.min.js | |
// @grant 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 HF Auto-Refresh Reputation | |
// @namespace HF Auto-Refresh Reputation | |
// @version 0.1 | |
// @description HF Auto-Refresh Reputation | |
// @author You | |
// @match *://hackforums.net/reputation.php?uid=* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @require https://raw.githubusercontent.com/pie6k/jquery.initialize/master/jquery.initialize.min.js | |
// @grant 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 Discord Change Favicon Ping For Allowed Servers Only | |
// @description Discord Change Favicon Ping For Allowed Servers Only | |
// @version 03.05.2018.1 | |
// @namespace Violentmonkey Scripts | |
// @grant GM_addStyle | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @require https://raw.githubusercontent.com/pie6k/jquery.initialize/master/jquery.initialize.min.js | |
// @match *://discordapp.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 Google Images - View Image button | |
// @description Brings back the View Image button that Google has removed. | |
// @namespace Violentmonkey Scripts | |
// @grant GM_addStyle | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @require https://raw.githubusercontent.com/pie6k/jquery.initialize/master/jquery.initialize.min.js | |
// @include *google* | |
// | |
// ==/UserScript== |