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 messageHandler(event) { | |
// Accessing to the message data sent by the main page | |
var messageSent = event.data; | |
// Preparing the message that we will send back | |
var messageReturned = "Hello " + messageSent + " from a separate thread!"; | |
// Posting back the message to the main page | |
this.postMessage(messageReturned); | |
} | |
// Defining the callback function raised when the main page will call us |
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.2 | |
// @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 https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @include *picturepub.net/index.php?threads* | |
// @grant GM_xmlhttpRequest | |
// @grant GM_download |
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 Remove Reputation Threads | |
// @namespace HF Remove Reputation Threads | |
// @version 0.1 | |
// @description Remove all threads that contains the word 'rep' | |
// @author You | |
// @match https://hackforums.net/forumdisplay.php?fid=* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/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 Discord Hide Guilds | |
// @description AAaa | |
// @namespace Violentmonkey Scripts | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @match *://discordapp.com/* | |
// | |
// ==/UserScript== | |
$(document).ready(function() { | |
$('.guild-separator').after($('<button style="background-color: #2f3136; box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1); border-radius: 25px; padding: 0px; width: 50px; height: 50px; font-size: 13px; color: #fff; font-weight: normal; text-align: center; margin-bottom: 10px;" type="button" id="toggleGuilds">Toggle</button>')); |
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 Avatar Download Button | |
// @version 1 | |
// @description Read the name. | |
// @namespace Violentmonkey Scripts | |
// @grant GM_addStyle | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @require https://gist.github.com/notcammy/a8b37bc2f49a76c30220d80fdd661429/raw/3148bcb32b9f0ce30cc62ee684eb60962051bcfa/jquery.initialize.js | |
// @match *://discordapp.com/* | |
// @match *://cdn.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 PTP Clear View Improved | |
// @namespace https://passthepopcorn.me | |
// @version 1.2 | |
// @description Makes it easier to visually identify freeleech torrents and torrents with no seeders on PTP | |
// @author jax913, cammy | |
// @match https://passthepopcorn.me/torrents.php* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js | |
// @grant MIT | |
// ==/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 PTP Freeleech Torrent Link | |
// @namespace https://passthepopcorn.me | |
// @version 1.0 | |
// @description View freeleech torrents through a fast search link added in the drop-down menu. | |
// @author Cammy | |
// @match https://passthepopcorn.me/* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js | |
// @grant MIT | |
// ==/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
.guilds-wrapper .guilds .guild.selected:before { | |
margin-top: -10px; | |
} | |
.guilds-wrapper .guilds .guild.selected { | |
z-index: 2; | |
transform: scale(1.2); | |
margin: 10px; | |
margin-left: 5px; | |
} |
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 PTP Clear View Improved | |
// @namespace https://passthepopcorn.me | |
// @version 1.0 | |
// @description Makes it easier to visually identify freeleech torrents and torrents with no seeders on PTP | |
// @author jax913, cammy | |
// @match https://passthepopcorn.me/torrents.php* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js | |
// @grant MIT | |
// ==/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 YouTube Focus Searchbar | |
// @namespace Dabberino | |
// @version 0.1 | |
// @description try to take over the dab | |
// @author Cammy | |
// @include *youtube.com* | |
// @grant none | |
// @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 |