├── .gitignore ├── LICENSE ├── README.md ├── bin └── build.sh ├── chrome.manifest ├── chrome ├── content │ ├── options.xul │ ├── overlay.xul │ └── zotitle.js └── locale │ └── en-US │ ├── options.dtd │ ├── options.properties │ ├── overlay.dtd │ └── zotitle.properties ├── defaults └── preferences │ └── prefs.js ├── install.rdf └── update.rdf /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | .idea/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManuelaRunge/Zotitle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManuelaRunge/Zotitle/HEAD/README.md -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManuelaRunge/Zotitle/HEAD/bin/build.sh -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManuelaRunge/Zotitle/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/options.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chrome/content/overlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManuelaRunge/Zotitle/HEAD/chrome/content/overlay.xul -------------------------------------------------------------------------------- /chrome/content/zotitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManuelaRunge/Zotitle/HEAD/chrome/content/zotitle.js -------------------------------------------------------------------------------- /chrome/locale/en-US/options.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chrome/locale/en-US/options.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManuelaRunge/Zotitle/HEAD/chrome/locale/en-US/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/zotitle.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /defaults/preferences/prefs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManuelaRunge/Zotitle/HEAD/install.rdf -------------------------------------------------------------------------------- /update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManuelaRunge/Zotitle/HEAD/update.rdf --------------------------------------------------------------------------------