├── Licence ├── README.md ├── bin └── zotexmacs.xpi ├── plugin └── zotexmacs │ ├── doc │ ├── zotexmacs-abstract.en.tm │ ├── zotexmacs.en-image-1.png │ └── zotexmacs.en.tm │ └── progs │ └── init-zotexmacs.scm └── src ├── Makefile ├── chrome.manifest ├── content ├── include.js ├── zotexmacsbrowserOverlay.js └── zotexmacsbrowserOverlay.xul ├── install.rdf ├── locale └── en-US │ ├── zotexmacsbrowserOverlay.dtd │ └── zotexmacsbrowserOverlay.properties └── skin ├── zotexmacs.png └── zotexmacsbrowserOverlay.css /Licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/Licence -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/README.md -------------------------------------------------------------------------------- /bin/zotexmacs.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/bin/zotexmacs.xpi -------------------------------------------------------------------------------- /plugin/zotexmacs/doc/zotexmacs-abstract.en.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/plugin/zotexmacs/doc/zotexmacs-abstract.en.tm -------------------------------------------------------------------------------- /plugin/zotexmacs/doc/zotexmacs.en-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/plugin/zotexmacs/doc/zotexmacs.en-image-1.png -------------------------------------------------------------------------------- /plugin/zotexmacs/doc/zotexmacs.en.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/plugin/zotexmacs/doc/zotexmacs.en.tm -------------------------------------------------------------------------------- /plugin/zotexmacs/progs/init-zotexmacs.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/plugin/zotexmacs/progs/init-zotexmacs.scm -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/src/chrome.manifest -------------------------------------------------------------------------------- /src/content/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/src/content/include.js -------------------------------------------------------------------------------- /src/content/zotexmacsbrowserOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/src/content/zotexmacsbrowserOverlay.js -------------------------------------------------------------------------------- /src/content/zotexmacsbrowserOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/src/content/zotexmacsbrowserOverlay.xul -------------------------------------------------------------------------------- /src/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/src/install.rdf -------------------------------------------------------------------------------- /src/locale/en-US/zotexmacsbrowserOverlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/src/locale/en-US/zotexmacsbrowserOverlay.dtd -------------------------------------------------------------------------------- /src/locale/en-US/zotexmacsbrowserOverlay.properties: -------------------------------------------------------------------------------- 1 | zotexmacs.label = Hey, this is fun! 2 | -------------------------------------------------------------------------------- /src/skin/zotexmacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/src/skin/zotexmacs.png -------------------------------------------------------------------------------- /src/skin/zotexmacsbrowserOverlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slowphil/zotexmacs/HEAD/src/skin/zotexmacsbrowserOverlay.css --------------------------------------------------------------------------------