├── .DS_Store ├── .eslintrc.json ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .release-it.json ├── .vscode ├── extensions.json ├── launch.json ├── setting.json └── toolkit.code-snippets ├── LICENSE ├── README.md ├── addon ├── bootstrap.js ├── chrome.manifest ├── chrome │ └── content │ │ └── icons │ │ ├── favicon.png │ │ └── favicon@0.5x.png ├── install.rdf ├── locale │ ├── en-US │ │ ├── addon.properties │ │ └── overlay.dtd │ └── zh-CN │ │ ├── addon.properties │ │ └── overlay.dtd ├── manifest.json └── prefs.js ├── package.json ├── pdffigures2.jar ├── scripts ├── build.mjs ├── reload.mjs ├── start.mjs ├── stop.mjs └── zotero-cmd-default.json ├── src ├── addon.ts ├── hooks.ts ├── index.ts ├── modules │ ├── annotation.js │ ├── test.json │ └── views.ts └── utils │ ├── locale.ts │ ├── prefs.ts │ ├── wait.ts │ ├── window.ts │ └── ztoolkit.ts ├── tsconfig.json ├── typing └── global.d.ts ├── update-template.json ├── update-template.rdf ├── update.json └── update.rdf /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/.DS_Store -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/.gitignore -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/.release-it.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/.vscode/setting.json -------------------------------------------------------------------------------- /.vscode/toolkit.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/.vscode/toolkit.code-snippets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/README.md -------------------------------------------------------------------------------- /addon/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/addon/bootstrap.js -------------------------------------------------------------------------------- /addon/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/addon/chrome.manifest -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/addon/chrome/content/icons/favicon.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/addon/chrome/content/icons/favicon@0.5x.png -------------------------------------------------------------------------------- /addon/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/addon/install.rdf -------------------------------------------------------------------------------- /addon/locale/en-US/addon.properties: -------------------------------------------------------------------------------- 1 | tabpanel.reader.tab.label=Figure -------------------------------------------------------------------------------- /addon/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/addon/locale/en-US/overlay.dtd -------------------------------------------------------------------------------- /addon/locale/zh-CN/addon.properties: -------------------------------------------------------------------------------- 1 | tabpanel.reader.tab.label=图表 -------------------------------------------------------------------------------- /addon/locale/zh-CN/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/addon/locale/zh-CN/overlay.dtd -------------------------------------------------------------------------------- /addon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/addon/manifest.json -------------------------------------------------------------------------------- /addon/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/addon/prefs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/package.json -------------------------------------------------------------------------------- /pdffigures2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/pdffigures2.jar -------------------------------------------------------------------------------- /scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/scripts/build.mjs -------------------------------------------------------------------------------- /scripts/reload.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/scripts/reload.mjs -------------------------------------------------------------------------------- /scripts/start.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/scripts/start.mjs -------------------------------------------------------------------------------- /scripts/stop.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/scripts/stop.mjs -------------------------------------------------------------------------------- /scripts/zotero-cmd-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/scripts/zotero-cmd-default.json -------------------------------------------------------------------------------- /src/addon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/addon.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/modules/annotation.js -------------------------------------------------------------------------------- /src/modules/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/modules/test.json -------------------------------------------------------------------------------- /src/modules/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/modules/views.ts -------------------------------------------------------------------------------- /src/utils/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/utils/locale.ts -------------------------------------------------------------------------------- /src/utils/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/utils/prefs.ts -------------------------------------------------------------------------------- /src/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/utils/wait.ts -------------------------------------------------------------------------------- /src/utils/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/utils/window.ts -------------------------------------------------------------------------------- /src/utils/ztoolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/src/utils/ztoolkit.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typing/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/typing/global.d.ts -------------------------------------------------------------------------------- /update-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/update-template.json -------------------------------------------------------------------------------- /update-template.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/update-template.rdf -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/update.json -------------------------------------------------------------------------------- /update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuiseDestiny/zotero-figure/HEAD/update.rdf --------------------------------------------------------------------------------