This file contains hidden or 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
input:not(.tactile-searchbox-input):not(.urlbar-input):not(.textbox-input):not(.form-control):not([type='checkbox']) { | |
-moz-appearance: none !important; | |
background-color: white; | |
color: black; | |
} | |
#downloads-indicator-counter { | |
color: white; | |
} |
This file contains hidden or 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
import hexchat | |
__module_name__ = "novoice" | |
__module_version__ = "2.0" | |
__module_description__ = "Ignores voice messages from ChanServ" | |
def voice_event(word, word_eol, userdata): | |
return hexchat.EAT_HEXCHAT | |
hexchat.hook_print("Channel Voice", voice_event) |
This file contains hidden or 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 HTML5 video using VLC plugin | |
// @grant none | |
// @include * | |
// ==/UserScript== | |
function html5vlc(){ | |
var videos = document.getElementsByTagName("video"); | |
var embeds = new Array(videos.length); | |
for (var i = 0; i < videos.length; i++) { | |
var vlc = document.createElement("embed"); |