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
var player = map.getPlayer(); | |
var c = ['#f00', '#0f0', '#ff0']; | |
player.setColor(c[Math.floor((Math.random() * 3) )]); |
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 HN Fix | |
// @namespace htt://taoufix.com/work | |
// @include https://news.ycombinator.com/item* | |
// @version 1 | |
// @grant none | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js | |
// ==/UserScript== | |
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 Autocomplete ON | |
// @namespace http://taoufix.com/autocomplete-on | |
// @description Set Autocomplete on on password fields | |
// @include * | |
// @version 1 | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
// @grant none | |
// ==/UserScript== | |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\AppEvents\Schemes] | |
@=".None" |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("grooveshark.com") { | |
/* Network error waning */ | |
#notifications { | |
display: none; | |
} | |
} |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("mail.google.com") { | |
/* Remove side bar for email detail */ | |
.Bu.y3 { display: none; } | |
} |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("jira_domain") { | |
#ghx-detail-view { width: 40% !important;} | |
} |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("news.ycombinator.com") { | |
* { background-color: white !important; } | |
} |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("feedly.com") { | |
span[class$='UnreadCountHint'] { | |
color: #777777; | |
font-weight: bold; | |
font-size: 1.5em; | |
} | |
#sideArea, |
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
var TEXT="Disponible"; | |
var COLOR = "red"; | |
var BG_COLOR="yellow"; | |
var allText = document.evaluate( "//text()[contains(., '" + TEXT + "' ) or contains(., 'disponible')]", document, null, XPathResult. ORDERED_NODE_SNAPSHOT_TYPE , null); | |
for(var i=0; i<allText.snapshotLength; i++) { | |
var cur = allText.snapshotItem(i); | |
var par = cur.parentNode; | |
var textInd; | |
var curName = cur.nodeName; | |
do { |
NewerOlder