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 Pinboard - Shortcut (Ctrl+D) | |
// @author leplay / jekyll | |
// @namespace http://userscripts.org/scripts/show/156067 | |
// @description Press Ctrl + D to add the opened webpage to pinboard.in using the same-page tag-cloud bookmarklet | |
// @grant none | |
// ==/UserScript== | |
// original script by leplay - http://userscripts.org/scripts/show/120694 | |
// modified by [email protected] |
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("laut.de") { | |
#lautfm_player { display: none !important; } | |
#formFacebook { display: none !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("pinboard.in") { | |
a.bookmark_title.unread { | |
font-weight: bold; | |
} |
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
/* | |
_________________________________________________________________________ | |
| | | | |
| Title: | Awesome Bar Background Color Based on Type (WOW) | | |
| Description: | Different Colors based on Bookmark, tag, or regular | | |
| Author: | -=Ben=- | | |
| Date Created: | July 3, 2008 | | |
| Last Updated: | October 7, 2008 | | |
| Version: | 1.0.0.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
/* | |
original userscript got replaced with a firefox addon (https://addons.mozilla.org/de/firefox/addon/cam/) | |
but somehow I like the script-version more, so here is a backup | |
*/ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
@-moz-document url("about:addons"),url("chrome://mozapps/content/extensions/extensions.xul") { | |
/*Compact top controls*/ |
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.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
#FindToolbar checkbox { | |
display: none !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
#SingleInstance, force | |
#NoEnv | |
#persistent | |
FileEncoding UTF-8 | |
SetWorkingDir %A_ScriptDir% | |
Gosub INIT | |
#y::checkSlot("run") | |
#x::selectTool() |
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
#SingleInstance, force | |
#NoEnv | |
#persistent | |
FileEncoding UTF-8 | |
SetWorkingDir %A_ScriptDir% | |
WaitClose := 1 | |
saveFileName := A_ScriptDir "\" SubStr( A_ScriptName, 1, -4 ) | |
saveFileExt := "csv" | |
saveFile := saveFileName . "." . saveFileExt |
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
#NoEnv | |
#SingleInstance, force | |
SetWorkingDir %A_ScriptDir% | |
FileEncoding UTF-8 | |
args = %0% | |
a_old = %1% | |
a_new = %2% | |
global timestamp, diffout |