├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ └── config.yml ├── LICENSE ├── README.md ├── chrome ├── BeQuiet.uc.js ├── autoPlainTextLinks.uc.js ├── autoPlainTextLinks.zip ├── contextToSearch.uc.js ├── deprecated │ ├── adjustUrlbar.uc.js │ ├── contextHideOnClick.uc.js │ ├── disableDetachTab.uc.js │ ├── hideTitlebar.uc.js │ ├── newtorkMonitor.uc.js │ ├── notificationPosition.uc.js │ ├── removeDropmarker.uc.js │ ├── requireShiftToDeleteFromAwesomeBar.uc.js │ └── speedupcanonizeURL.uc.js ├── enterSelects.uc.js ├── extensionOptionsMenu.uc.js ├── extensionsUpdateChecker.uc.js ├── inputLanguageAssistant.uc.js ├── keepMenuOnMiddleClick.uc.js ├── masterPasswordPlus.uc.js ├── minMaxCloseButton.uc.js ├── mouseGestures.uc.js ├── mouseGestures.zip ├── mouseGestures │ ├── MGestChild.sys.mjs │ └── MGestParent.sys.mjs ├── multifoxContainer.uc.js ├── newtab-aboutconfig.uc.js ├── openInUnloadedTab.uc.js ├── privateTab.uc.js ├── rebuild_userChrome.uc.js ├── redirector.uc.js ├── scroll1pxWheel.uc.js ├── scrollUpFolder.uc.js ├── status-bar.uc.js ├── styloaix.uc.js ├── styloaix.zip └── utils │ ├── BootstrapLoader.js │ ├── ChromeManifest.sys.mjs │ ├── RDFDataSource.sys.mjs │ ├── RDFManifestConverter.sys.mjs │ ├── aboutconfig │ ├── aboutconfig.xhtml │ ├── config.css │ └── config.js │ ├── chrome.manifest │ ├── hookFunction.mjs │ ├── passwordmgr │ ├── passwordManager.js │ ├── passwordManager.xhtml │ └── passwordmgr.css │ ├── styloaix │ ├── 16.png │ ├── 16w.png │ ├── autocomplete.js │ ├── edit.css │ ├── edit.js │ └── edit.xhtml │ ├── userChrome.js │ └── xPref.sys.mjs ├── extensions ├── DownThemAll │ ├── README.md │ ├── dta.xpi │ └── update.rdf ├── README.md ├── S3Download │ ├── README.md │ ├── s3download.xpi │ └── update.rdf ├── backtrack │ ├── BackTrack.xpi │ ├── Branching.png │ ├── Diagram.png │ ├── Options.png │ ├── README.md │ └── update.rdf ├── bootstrapLoader │ ├── README.md │ ├── bootstrapLoader.xpi │ └── updates.json ├── deprecated │ ├── greasemonkey │ │ ├── README.md │ │ ├── greasemonkey.xpi │ │ └── update.rdf │ ├── privatetab │ │ ├── README.md │ │ ├── privatetab.xpi │ │ └── update.rdf │ └── stylish │ │ ├── README.md │ │ ├── stylish.xpi │ │ └── update.rdf ├── fasttabswitcher │ ├── README.md │ ├── fts.xpi │ └── update.rdf ├── keyconfig │ ├── README.md │ ├── keyconfig.xpi │ └── update.rdf ├── linkstatusredux │ ├── README.md │ ├── linkstatusredux.xpi │ └── update.rdf ├── norwellht │ ├── README.md │ ├── norwellht.xpi │ └── update.rdf ├── quickfox │ ├── README.md │ ├── quickfox.xpi │ └── update.rdf ├── rehostimg │ ├── README.md │ ├── rehost.xpi │ └── update.rdf └── savefileto │ ├── README.md │ ├── savefileto.xpi │ └── update.rdf ├── fx-folder.zip ├── installation-folder ├── config-prefs.js └── config.js ├── screenshots ├── folder.png ├── minmaxclose.png ├── privatetab.png ├── rebuild_userChrome.png ├── styloaix-button.png ├── styloaix-editor.png └── window.png ├── utils.zip ├── utils_extensions_only.zip └── utils_scripts_only.zip /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/README.md -------------------------------------------------------------------------------- /chrome/BeQuiet.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/BeQuiet.uc.js -------------------------------------------------------------------------------- /chrome/autoPlainTextLinks.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/autoPlainTextLinks.uc.js -------------------------------------------------------------------------------- /chrome/autoPlainTextLinks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/autoPlainTextLinks.zip -------------------------------------------------------------------------------- /chrome/contextToSearch.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/contextToSearch.uc.js -------------------------------------------------------------------------------- /chrome/deprecated/adjustUrlbar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/deprecated/adjustUrlbar.uc.js -------------------------------------------------------------------------------- /chrome/deprecated/contextHideOnClick.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/deprecated/contextHideOnClick.uc.js -------------------------------------------------------------------------------- /chrome/deprecated/disableDetachTab.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/deprecated/disableDetachTab.uc.js -------------------------------------------------------------------------------- /chrome/deprecated/hideTitlebar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/deprecated/hideTitlebar.uc.js -------------------------------------------------------------------------------- /chrome/deprecated/newtorkMonitor.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/deprecated/newtorkMonitor.uc.js -------------------------------------------------------------------------------- /chrome/deprecated/notificationPosition.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/deprecated/notificationPosition.uc.js -------------------------------------------------------------------------------- /chrome/deprecated/removeDropmarker.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/deprecated/removeDropmarker.uc.js -------------------------------------------------------------------------------- /chrome/deprecated/requireShiftToDeleteFromAwesomeBar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/deprecated/requireShiftToDeleteFromAwesomeBar.uc.js -------------------------------------------------------------------------------- /chrome/deprecated/speedupcanonizeURL.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/deprecated/speedupcanonizeURL.uc.js -------------------------------------------------------------------------------- /chrome/enterSelects.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/enterSelects.uc.js -------------------------------------------------------------------------------- /chrome/extensionOptionsMenu.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/extensionOptionsMenu.uc.js -------------------------------------------------------------------------------- /chrome/extensionsUpdateChecker.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/extensionsUpdateChecker.uc.js -------------------------------------------------------------------------------- /chrome/inputLanguageAssistant.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/inputLanguageAssistant.uc.js -------------------------------------------------------------------------------- /chrome/keepMenuOnMiddleClick.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/keepMenuOnMiddleClick.uc.js -------------------------------------------------------------------------------- /chrome/masterPasswordPlus.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/masterPasswordPlus.uc.js -------------------------------------------------------------------------------- /chrome/minMaxCloseButton.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/minMaxCloseButton.uc.js -------------------------------------------------------------------------------- /chrome/mouseGestures.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/mouseGestures.uc.js -------------------------------------------------------------------------------- /chrome/mouseGestures.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/mouseGestures.zip -------------------------------------------------------------------------------- /chrome/mouseGestures/MGestChild.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/mouseGestures/MGestChild.sys.mjs -------------------------------------------------------------------------------- /chrome/mouseGestures/MGestParent.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/mouseGestures/MGestParent.sys.mjs -------------------------------------------------------------------------------- /chrome/multifoxContainer.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/multifoxContainer.uc.js -------------------------------------------------------------------------------- /chrome/newtab-aboutconfig.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/newtab-aboutconfig.uc.js -------------------------------------------------------------------------------- /chrome/openInUnloadedTab.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/openInUnloadedTab.uc.js -------------------------------------------------------------------------------- /chrome/privateTab.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/privateTab.uc.js -------------------------------------------------------------------------------- /chrome/rebuild_userChrome.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/rebuild_userChrome.uc.js -------------------------------------------------------------------------------- /chrome/redirector.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/redirector.uc.js -------------------------------------------------------------------------------- /chrome/scroll1pxWheel.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/scroll1pxWheel.uc.js -------------------------------------------------------------------------------- /chrome/scrollUpFolder.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/scrollUpFolder.uc.js -------------------------------------------------------------------------------- /chrome/status-bar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/status-bar.uc.js -------------------------------------------------------------------------------- /chrome/styloaix.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/styloaix.uc.js -------------------------------------------------------------------------------- /chrome/styloaix.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/styloaix.zip -------------------------------------------------------------------------------- /chrome/utils/BootstrapLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/BootstrapLoader.js -------------------------------------------------------------------------------- /chrome/utils/ChromeManifest.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/ChromeManifest.sys.mjs -------------------------------------------------------------------------------- /chrome/utils/RDFDataSource.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/RDFDataSource.sys.mjs -------------------------------------------------------------------------------- /chrome/utils/RDFManifestConverter.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/RDFManifestConverter.sys.mjs -------------------------------------------------------------------------------- /chrome/utils/aboutconfig/aboutconfig.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/aboutconfig/aboutconfig.xhtml -------------------------------------------------------------------------------- /chrome/utils/aboutconfig/config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/aboutconfig/config.css -------------------------------------------------------------------------------- /chrome/utils/aboutconfig/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/aboutconfig/config.js -------------------------------------------------------------------------------- /chrome/utils/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/chrome.manifest -------------------------------------------------------------------------------- /chrome/utils/hookFunction.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/hookFunction.mjs -------------------------------------------------------------------------------- /chrome/utils/passwordmgr/passwordManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/passwordmgr/passwordManager.js -------------------------------------------------------------------------------- /chrome/utils/passwordmgr/passwordManager.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/passwordmgr/passwordManager.xhtml -------------------------------------------------------------------------------- /chrome/utils/passwordmgr/passwordmgr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/passwordmgr/passwordmgr.css -------------------------------------------------------------------------------- /chrome/utils/styloaix/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/styloaix/16.png -------------------------------------------------------------------------------- /chrome/utils/styloaix/16w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/styloaix/16w.png -------------------------------------------------------------------------------- /chrome/utils/styloaix/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/styloaix/autocomplete.js -------------------------------------------------------------------------------- /chrome/utils/styloaix/edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/styloaix/edit.css -------------------------------------------------------------------------------- /chrome/utils/styloaix/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/styloaix/edit.js -------------------------------------------------------------------------------- /chrome/utils/styloaix/edit.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/styloaix/edit.xhtml -------------------------------------------------------------------------------- /chrome/utils/userChrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/userChrome.js -------------------------------------------------------------------------------- /chrome/utils/xPref.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/chrome/utils/xPref.sys.mjs -------------------------------------------------------------------------------- /extensions/DownThemAll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/DownThemAll/README.md -------------------------------------------------------------------------------- /extensions/DownThemAll/dta.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/DownThemAll/dta.xpi -------------------------------------------------------------------------------- /extensions/DownThemAll/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/DownThemAll/update.rdf -------------------------------------------------------------------------------- /extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/README.md -------------------------------------------------------------------------------- /extensions/S3Download/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/S3Download/README.md -------------------------------------------------------------------------------- /extensions/S3Download/s3download.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/S3Download/s3download.xpi -------------------------------------------------------------------------------- /extensions/S3Download/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/S3Download/update.rdf -------------------------------------------------------------------------------- /extensions/backtrack/BackTrack.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/backtrack/BackTrack.xpi -------------------------------------------------------------------------------- /extensions/backtrack/Branching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/backtrack/Branching.png -------------------------------------------------------------------------------- /extensions/backtrack/Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/backtrack/Diagram.png -------------------------------------------------------------------------------- /extensions/backtrack/Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/backtrack/Options.png -------------------------------------------------------------------------------- /extensions/backtrack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/backtrack/README.md -------------------------------------------------------------------------------- /extensions/backtrack/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/backtrack/update.rdf -------------------------------------------------------------------------------- /extensions/bootstrapLoader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/bootstrapLoader/README.md -------------------------------------------------------------------------------- /extensions/bootstrapLoader/bootstrapLoader.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/bootstrapLoader/bootstrapLoader.xpi -------------------------------------------------------------------------------- /extensions/bootstrapLoader/updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/bootstrapLoader/updates.json -------------------------------------------------------------------------------- /extensions/deprecated/greasemonkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/deprecated/greasemonkey/README.md -------------------------------------------------------------------------------- /extensions/deprecated/greasemonkey/greasemonkey.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/deprecated/greasemonkey/greasemonkey.xpi -------------------------------------------------------------------------------- /extensions/deprecated/greasemonkey/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/deprecated/greasemonkey/update.rdf -------------------------------------------------------------------------------- /extensions/deprecated/privatetab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/deprecated/privatetab/README.md -------------------------------------------------------------------------------- /extensions/deprecated/privatetab/privatetab.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/deprecated/privatetab/privatetab.xpi -------------------------------------------------------------------------------- /extensions/deprecated/privatetab/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/deprecated/privatetab/update.rdf -------------------------------------------------------------------------------- /extensions/deprecated/stylish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/deprecated/stylish/README.md -------------------------------------------------------------------------------- /extensions/deprecated/stylish/stylish.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/deprecated/stylish/stylish.xpi -------------------------------------------------------------------------------- /extensions/deprecated/stylish/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/deprecated/stylish/update.rdf -------------------------------------------------------------------------------- /extensions/fasttabswitcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/fasttabswitcher/README.md -------------------------------------------------------------------------------- /extensions/fasttabswitcher/fts.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/fasttabswitcher/fts.xpi -------------------------------------------------------------------------------- /extensions/fasttabswitcher/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/fasttabswitcher/update.rdf -------------------------------------------------------------------------------- /extensions/keyconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/keyconfig/README.md -------------------------------------------------------------------------------- /extensions/keyconfig/keyconfig.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/keyconfig/keyconfig.xpi -------------------------------------------------------------------------------- /extensions/keyconfig/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/keyconfig/update.rdf -------------------------------------------------------------------------------- /extensions/linkstatusredux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/linkstatusredux/README.md -------------------------------------------------------------------------------- /extensions/linkstatusredux/linkstatusredux.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/linkstatusredux/linkstatusredux.xpi -------------------------------------------------------------------------------- /extensions/linkstatusredux/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/linkstatusredux/update.rdf -------------------------------------------------------------------------------- /extensions/norwellht/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/norwellht/README.md -------------------------------------------------------------------------------- /extensions/norwellht/norwellht.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/norwellht/norwellht.xpi -------------------------------------------------------------------------------- /extensions/norwellht/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/norwellht/update.rdf -------------------------------------------------------------------------------- /extensions/quickfox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/quickfox/README.md -------------------------------------------------------------------------------- /extensions/quickfox/quickfox.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/quickfox/quickfox.xpi -------------------------------------------------------------------------------- /extensions/quickfox/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/quickfox/update.rdf -------------------------------------------------------------------------------- /extensions/rehostimg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/rehostimg/README.md -------------------------------------------------------------------------------- /extensions/rehostimg/rehost.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/rehostimg/rehost.xpi -------------------------------------------------------------------------------- /extensions/rehostimg/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/rehostimg/update.rdf -------------------------------------------------------------------------------- /extensions/savefileto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/savefileto/README.md -------------------------------------------------------------------------------- /extensions/savefileto/savefileto.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/savefileto/savefileto.xpi -------------------------------------------------------------------------------- /extensions/savefileto/update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/extensions/savefileto/update.rdf -------------------------------------------------------------------------------- /fx-folder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/fx-folder.zip -------------------------------------------------------------------------------- /installation-folder/config-prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/installation-folder/config-prefs.js -------------------------------------------------------------------------------- /installation-folder/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/installation-folder/config.js -------------------------------------------------------------------------------- /screenshots/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/screenshots/folder.png -------------------------------------------------------------------------------- /screenshots/minmaxclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/screenshots/minmaxclose.png -------------------------------------------------------------------------------- /screenshots/privatetab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/screenshots/privatetab.png -------------------------------------------------------------------------------- /screenshots/rebuild_userChrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/screenshots/rebuild_userChrome.png -------------------------------------------------------------------------------- /screenshots/styloaix-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/screenshots/styloaix-button.png -------------------------------------------------------------------------------- /screenshots/styloaix-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/screenshots/styloaix-editor.png -------------------------------------------------------------------------------- /screenshots/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/screenshots/window.png -------------------------------------------------------------------------------- /utils.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/utils.zip -------------------------------------------------------------------------------- /utils_extensions_only.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/utils_extensions_only.zip -------------------------------------------------------------------------------- /utils_scripts_only.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/firefox-scripts/HEAD/utils_scripts_only.zip --------------------------------------------------------------------------------