├── .gitignore ├── LICENSE ├── README.md ├── chrome.manifest ├── chrome ├── content │ ├── overlay.xul │ ├── preferences.xul │ └── zoteroopencitations.js ├── locale │ └── en-US │ │ ├── zoteroopencitations.dtd │ │ └── zoteroopencitations.properties └── skin │ └── default │ └── zoteroopencitations │ ├── wooc.png │ ├── wooc32x32.png │ └── wooc64x64.png ├── install.rdf ├── release.sh └── update.rdf /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | *.xpi 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/README.md -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/overlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/chrome/content/overlay.xul -------------------------------------------------------------------------------- /chrome/content/preferences.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/chrome/content/preferences.xul -------------------------------------------------------------------------------- /chrome/content/zoteroopencitations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/chrome/content/zoteroopencitations.js -------------------------------------------------------------------------------- /chrome/locale/en-US/zoteroopencitations.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/chrome/locale/en-US/zoteroopencitations.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/zoteroopencitations.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chrome/skin/default/zoteroopencitations/wooc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/chrome/skin/default/zoteroopencitations/wooc.png -------------------------------------------------------------------------------- /chrome/skin/default/zoteroopencitations/wooc32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/chrome/skin/default/zoteroopencitations/wooc32x32.png -------------------------------------------------------------------------------- /chrome/skin/default/zoteroopencitations/wooc64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/chrome/skin/default/zoteroopencitations/wooc64x64.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/install.rdf -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/release.sh -------------------------------------------------------------------------------- /update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuphilip/zotero-open-citations/HEAD/update.rdf --------------------------------------------------------------------------------