Skip to content

Instantly share code, notes, and snippets.

View cletusc's full-sized avatar

Ryan Chatham cletusc

View GitHub Profile
@cletusc
cletusc / script.user.js
Created July 19, 2017 04:10
2017-07-18 Emote Menu Test
// ==UserScript==
// @name Twitch Chat Emotes
// @namespace #Cletus
// @version 2.1.4
// @description Adds a button to Twitch that allows you to "click-to-insert" an emote.
// @copyright 2011+, Ryan Chatham <ryan.b.chatham@gmail.com> (https://github.com/cletusc)
// @author Ryan Chatham <ryan.b.chatham@gmail.com> (https://github.com/cletusc)
// @icon http://www.gravatar.com/avatar.php?gravatar_id=6875e83aa6c563790cb2da914aaba8b3&r=PG&s=48&default=identicon
// @license MIT; http://opensource.org/licenses/MIT
// @license CC BY-NC-SA 3.0; http://creativecommons.org/licenses/by-nc-sa/3.0/
@cletusc
cletusc / script.user.js
Created July 30, 2014 02:38
Tests externally embedding a userscript in the page to trigger an install. See https://github.com/cletusc/Userscript--Twitch-Chat-Emotes/issues/52
// ==UserScript==
// @name Embedding Twitch Chat Emotes as userscript
// @namespace #Cletus
// @description Tests externally embedding a userscript in the page to trigger an install. See https://github.com/cletusc/Userscript--Twitch-Chat-Emotes/issues/52
// @include http://*.twitch.tv/*
// @version 1
// @grant none
// ==/UserScript==
var script = document.createElement('script');
@cletusc
cletusc / style.css
Created April 22, 2014 02:12
Remove Gmail "Mark as unread" option
@-moz-document domain(mail.google.com) {
.J-M .SK :nth-child(3) {
display: none;
}
}
// ==UserScript==
// @name TVLinks Helper
// @namespace #Cletus
// @description Assists the download of shows from TVLinks. Provides download links and highlights compatible hosts.
// @copyright 2011+, Ryan Chatham (http://userscripts.org/users/cletus)
// @license Creative Commons; http://creativecommons.org/licenses/by-nc-sa/3.0/
// @icon http://www.gravatar.com/avatar.php?gravatar_id=6875e83aa6c563790cb2da914aaba8b3&r=PG&s=48&default=identicon
//
// @grant GM_addStyle
//
// ==UserScript==
// @name Issue 1551 Test
// @namespace #Cletus
// @include http://cletustech.com/
// @version 0.1.0
// @grant none
// ==/UserScript==
var hello = 'panic';
@cletusc
cletusc / gist:801651
Created January 29, 2011 07:37
test case: node not found code 8
// ==UserScript==
// @name Test
// @namespace #Test
// @include http://www.this-page-intentionally-left-blank.org/
// ==/UserScript==
GM_registerMenuCommand('test', function () {});