├── INSTALLATION.txt ├── README.md ├── ffroot ├── config.js └── defaults │ └── pref │ ├── channel-prefs.js │ └── config-prefs.js └── profile └── chrome ├── JS ├── activity_throbber.uc.js ├── additional_top_toolbars.uc.js ├── change-titlebar-text.uc.js ├── change-toolbar-icon-values.uc.js ├── favicon_in_urlbar.uc.js ├── go_button.uc.js ├── move_bars.uc.js ├── scrollbar.uc.js ├── space_and_separator_restorer.uc.js └── status_bar.uc.js ├── go.png ├── page.png ├── toolbar-label-under-icon.css ├── toolbar.png ├── toolbar_large.png ├── userChrome.css └── utils ├── BootstrapLoader.jsm ├── RDFDataSource.jsm ├── RDFManifestConverter.jsm ├── aboutconfig ├── aboutconfig.xhtml ├── config.css └── config.js ├── boot.jsm ├── chrome.manifest ├── passwordmgr ├── passwordManager.js ├── passwordManager.xhtml └── passwordmgr.css ├── userChrome.jsm ├── userPrefs.jsm └── xPref.jsm /INSTALLATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/INSTALLATION.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/README.md -------------------------------------------------------------------------------- /ffroot/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/ffroot/config.js -------------------------------------------------------------------------------- /ffroot/defaults/pref/channel-prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/ffroot/defaults/pref/channel-prefs.js -------------------------------------------------------------------------------- /ffroot/defaults/pref/config-prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/ffroot/defaults/pref/config-prefs.js -------------------------------------------------------------------------------- /profile/chrome/JS/activity_throbber.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/activity_throbber.uc.js -------------------------------------------------------------------------------- /profile/chrome/JS/additional_top_toolbars.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/additional_top_toolbars.uc.js -------------------------------------------------------------------------------- /profile/chrome/JS/change-titlebar-text.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/change-titlebar-text.uc.js -------------------------------------------------------------------------------- /profile/chrome/JS/change-toolbar-icon-values.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/change-toolbar-icon-values.uc.js -------------------------------------------------------------------------------- /profile/chrome/JS/favicon_in_urlbar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/favicon_in_urlbar.uc.js -------------------------------------------------------------------------------- /profile/chrome/JS/go_button.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/go_button.uc.js -------------------------------------------------------------------------------- /profile/chrome/JS/move_bars.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/move_bars.uc.js -------------------------------------------------------------------------------- /profile/chrome/JS/scrollbar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/scrollbar.uc.js -------------------------------------------------------------------------------- /profile/chrome/JS/space_and_separator_restorer.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/space_and_separator_restorer.uc.js -------------------------------------------------------------------------------- /profile/chrome/JS/status_bar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/JS/status_bar.uc.js -------------------------------------------------------------------------------- /profile/chrome/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/go.png -------------------------------------------------------------------------------- /profile/chrome/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/page.png -------------------------------------------------------------------------------- /profile/chrome/toolbar-label-under-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/toolbar-label-under-icon.css -------------------------------------------------------------------------------- /profile/chrome/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/toolbar.png -------------------------------------------------------------------------------- /profile/chrome/toolbar_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/toolbar_large.png -------------------------------------------------------------------------------- /profile/chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/userChrome.css -------------------------------------------------------------------------------- /profile/chrome/utils/BootstrapLoader.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/BootstrapLoader.jsm -------------------------------------------------------------------------------- /profile/chrome/utils/RDFDataSource.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/RDFDataSource.jsm -------------------------------------------------------------------------------- /profile/chrome/utils/RDFManifestConverter.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/RDFManifestConverter.jsm -------------------------------------------------------------------------------- /profile/chrome/utils/aboutconfig/aboutconfig.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/aboutconfig/aboutconfig.xhtml -------------------------------------------------------------------------------- /profile/chrome/utils/aboutconfig/config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/aboutconfig/config.css -------------------------------------------------------------------------------- /profile/chrome/utils/aboutconfig/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/aboutconfig/config.js -------------------------------------------------------------------------------- /profile/chrome/utils/boot.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/boot.jsm -------------------------------------------------------------------------------- /profile/chrome/utils/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/chrome.manifest -------------------------------------------------------------------------------- /profile/chrome/utils/passwordmgr/passwordManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/passwordmgr/passwordManager.js -------------------------------------------------------------------------------- /profile/chrome/utils/passwordmgr/passwordManager.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/passwordmgr/passwordManager.xhtml -------------------------------------------------------------------------------- /profile/chrome/utils/passwordmgr/passwordmgr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/passwordmgr/passwordmgr.css -------------------------------------------------------------------------------- /profile/chrome/utils/userChrome.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/userChrome.jsm -------------------------------------------------------------------------------- /profile/chrome/utils/userPrefs.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/userPrefs.jsm -------------------------------------------------------------------------------- /profile/chrome/utils/xPref.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echelon-theme/spyglass/HEAD/profile/chrome/utils/xPref.jsm --------------------------------------------------------------------------------