├── .gitignore ├── README.md ├── chrome.manifest ├── chrome ├── content │ ├── author-bold-star.xul │ ├── change-publication-title.xul │ ├── options.xul │ ├── overlay.xul │ ├── scripts │ │ ├── options.js │ │ └── zoteroupdateifs.js │ ├── title-search-replace.xul │ └── utils.xul ├── locale │ ├── en-US │ │ ├── options.dtd │ │ ├── options.properties │ │ ├── overlay.dtd │ │ └── zoteroupdateifs.properties │ └── zh-CN │ │ ├── options.dtd │ │ ├── options.properties │ │ ├── overlay.dtd │ │ └── zoteroupdateifs.properties └── skin │ └── default │ └── zoteroupdateifs │ ├── accept.png │ ├── exclamation.png │ ├── greenarrow.png │ ├── information.png │ ├── minus.png │ └── pen.png ├── defaults └── preferences │ └── prefs.js ├── install.rdf ├── release.sh └── update.rdf /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | *.xpi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/README.md -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/author-bold-star.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/content/author-bold-star.xul -------------------------------------------------------------------------------- /chrome/content/change-publication-title.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/content/change-publication-title.xul -------------------------------------------------------------------------------- /chrome/content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/content/options.xul -------------------------------------------------------------------------------- /chrome/content/overlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/content/overlay.xul -------------------------------------------------------------------------------- /chrome/content/scripts/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/content/scripts/options.js -------------------------------------------------------------------------------- /chrome/content/scripts/zoteroupdateifs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/content/scripts/zoteroupdateifs.js -------------------------------------------------------------------------------- /chrome/content/title-search-replace.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/content/title-search-replace.xul -------------------------------------------------------------------------------- /chrome/content/utils.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/content/utils.xul -------------------------------------------------------------------------------- /chrome/locale/en-US/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/locale/en-US/options.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/options.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/locale/en-US/options.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/locale/en-US/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/zoteroupdateifs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/locale/en-US/zoteroupdateifs.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/locale/zh-CN/options.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/options.properties: -------------------------------------------------------------------------------- 1 | # zotero.item=请先选择你想更改期刊名称的的条目。 -------------------------------------------------------------------------------- /chrome/locale/zh-CN/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/locale/zh-CN/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/zoteroupdateifs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/locale/zh-CN/zoteroupdateifs.properties -------------------------------------------------------------------------------- /chrome/skin/default/zoteroupdateifs/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/skin/default/zoteroupdateifs/accept.png -------------------------------------------------------------------------------- /chrome/skin/default/zoteroupdateifs/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/skin/default/zoteroupdateifs/exclamation.png -------------------------------------------------------------------------------- /chrome/skin/default/zoteroupdateifs/greenarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/skin/default/zoteroupdateifs/greenarrow.png -------------------------------------------------------------------------------- /chrome/skin/default/zoteroupdateifs/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/skin/default/zoteroupdateifs/information.png -------------------------------------------------------------------------------- /chrome/skin/default/zoteroupdateifs/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/skin/default/zoteroupdateifs/minus.png -------------------------------------------------------------------------------- /chrome/skin/default/zoteroupdateifs/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/chrome/skin/default/zoteroupdateifs/pen.png -------------------------------------------------------------------------------- /defaults/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/defaults/preferences/prefs.js -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/install.rdf -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/release.sh -------------------------------------------------------------------------------- /update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redleafnew/zotero-updateifs/HEAD/update.rdf --------------------------------------------------------------------------------