├── .gitattributes ├── .github ├── dependabot.yml ├── renovate.json └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── .vscode ├── launch.json └── toolkit.code-snippets ├── .yarnrc.yml ├── LICENSE ├── README.md ├── TODO.md ├── VSCProject.code-workspace ├── addon ├── bootstrap.js ├── content │ ├── icons │ │ ├── favicon.png │ │ └── favicon@0.5x.png │ ├── preferences.css │ └── preferences.xhtml ├── locale │ ├── en-US │ │ ├── addon.ftl │ │ ├── mainWindow.ftl │ │ └── preferences.ftl │ └── zh-CN │ │ ├── addon.ftl │ │ ├── mainWindow.ftl │ │ └── preferences.ftl ├── manifest.json └── prefs.js ├── docs └── assets │ └── readme │ ├── screenshot.png │ └── show-column.png ├── eslint.config.mjs ├── package.json ├── prettier.config.mjs ├── src ├── addon.ts ├── hooks.ts ├── index.ts ├── modules │ ├── citationAutoupdate.ts │ ├── citationTally.ts │ └── preferenceScript.ts └── utils │ ├── locale.ts │ ├── prefs.ts │ ├── window.ts │ └── ztoolkit.ts ├── tsconfig.dev.json ├── tsconfig.json ├── tsconfig.prod.json ├── typings ├── global.d.ts ├── i10n.d.ts └── prefs.d.ts ├── yarn.lock └── zotero-plugin.config.ts /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/toolkit.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/.vscode/toolkit.code-snippets -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: pnpm 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/TODO.md -------------------------------------------------------------------------------- /VSCProject.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/VSCProject.code-workspace -------------------------------------------------------------------------------- /addon/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/bootstrap.js -------------------------------------------------------------------------------- /addon/content/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/content/icons/favicon.png -------------------------------------------------------------------------------- /addon/content/icons/favicon@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/content/icons/favicon@0.5x.png -------------------------------------------------------------------------------- /addon/content/preferences.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/content/preferences.css -------------------------------------------------------------------------------- /addon/content/preferences.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/content/preferences.xhtml -------------------------------------------------------------------------------- /addon/locale/en-US/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/locale/en-US/addon.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/locale/en-US/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/locale/en-US/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/locale/zh-CN/addon.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/locale/zh-CN/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/locale/zh-CN/preferences.ftl -------------------------------------------------------------------------------- /addon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/manifest.json -------------------------------------------------------------------------------- /addon/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/addon/prefs.js -------------------------------------------------------------------------------- /docs/assets/readme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/docs/assets/readme/screenshot.png -------------------------------------------------------------------------------- /docs/assets/readme/show-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/docs/assets/readme/show-column.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /src/addon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/addon.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/citationAutoupdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/modules/citationAutoupdate.ts -------------------------------------------------------------------------------- /src/modules/citationTally.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/modules/citationTally.ts -------------------------------------------------------------------------------- /src/modules/preferenceScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/modules/preferenceScript.ts -------------------------------------------------------------------------------- /src/utils/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/utils/locale.ts -------------------------------------------------------------------------------- /src/utils/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/utils/prefs.ts -------------------------------------------------------------------------------- /src/utils/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/utils/window.ts -------------------------------------------------------------------------------- /src/utils/ztoolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/src/utils/ztoolkit.ts -------------------------------------------------------------------------------- /tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/tsconfig.dev.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/tsconfig.prod.json -------------------------------------------------------------------------------- /typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/typings/global.d.ts -------------------------------------------------------------------------------- /typings/i10n.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/typings/i10n.d.ts -------------------------------------------------------------------------------- /typings/prefs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/typings/prefs.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/yarn.lock -------------------------------------------------------------------------------- /zotero-plugin.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daeh/zotero-citation-tally/HEAD/zotero-plugin.config.ts --------------------------------------------------------------------------------