Moved to https://github.com/LouCypher/userscripts/tree/master/flickr-share-userscripts
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 Flickr Plus One Like | |
// @namespace http://mozilla.status.net/loucypher | |
// @description Add Google+1 and Facebook Like buttons | |
// @author LouCypher | |
// @license free | |
// @match *://*.flickr.com/photos/* | |
// @include http://www.flickr.com/photos/* | |
// @include https://secure.flickr.com/photos/* | |
// ==/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
/* Specify blanket rules for all elements */ | |
body { | |
font-size:80%; | |
font-family:'Lucida Grande',Verdana,sans-serif; | |
margin:10px; | |
} | |
/* Rules for headings */ | |
h1 { | |
font-size:150%; |
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 Show Password onFocus | |
// @namespace http://zoolcar9.lhukie.net/ | |
// @description Show password when focus on password field | |
// @version 20130114.01 | |
// @author LouCypher | |
// @license free | |
// @homepageURL http://userscripts.org/scripts/show/1892 | |
// @updateURL https://gist.github.com/raw/1870154/show-password-onfocus.user.js | |
// @downloadURL https://gist.github.com/raw/1870154/show-password-onfocus.user.js |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("mozillazine.org") { | |
html[xmlns]:not([lang]), | |
html:not([xmlns]):not([lang]) { | |
background: url("data:image/jpeg;base64,\ | |
/9j/4AAQSkZJRgABAQEASABIAAD/4Tp0aHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hw\ | |
YWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBt\ | |
ZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSIzLjEuMi0xMTMiPgogICA8cmRm\ | |
OlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1u\ | |
cyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxu\ |
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 about:home -> Switch Search | |
// @namespace http://forums.mozillazine.org/viewtopic.php?t=2158301 | |
// @include about:home | |
// ==/UserScript== | |
let SearchEngines = { | |
Google: { | |
"name": "Google", | |
"searchUrl": "http://www.google.com/search?q=", |
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
/* ---------------------------------------------------------------------------- | |
Compatibility: | |
- Firefox 3.6 - 6.0a2 | |
- Custom Buttons 0.0.5.* | |
Changelog: | |
- 2011-06-06: using unique IDs for menuitems | |
- 2011-06-05: FUELed | |
- 2011-05-10: using Custom Buttons API | |
- 2011-04-08: Firefox 4+ compatibility |