Moved to https://github.com/LouCypher/userscripts/tree/master/addons.mozilla.org
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
To export: | |
1. Right click on any custom buttons | |
2. Select 'Export to XML' | |
To import: | |
1. Click this button | |
2. Select a Custom Buttons XML file |
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
BrowserOpenAddonsMgr(); | |
/* | |
//var url = "chrome://mozapps/content/extensions/extensions.xul"; | |
var url = "about:addons"; | |
if (gBrowser.mCurrentTab.linkedBrowser.currentURI.spec == "about:blank") { | |
loadURI(url); | |
return; | |
} |
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 |
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
@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 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 |
OlderNewer