├── .gitattributes ├── .github ├── dependabot.yml ├── renovate.json └── workflows │ └── release.yml ├── .gitignore ├── .prettierignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── toolkit.code-snippets ├── LICENSE ├── README-zhCN.md ├── README.md ├── Zotero Creator Statistic ├── creatorsCombination.sql ├── creatorsCombinationResult.sql ├── creatorsCount.sql └── creatorsCountCombination.sql ├── addon ├── bootstrap.js ├── chrome │ └── content │ │ ├── AliasEditor.xhtml │ │ ├── AllAuthorsWindow.xhtml │ │ ├── icons │ │ ├── favicon.png │ │ ├── favicon@0.5x.png │ │ ├── 资源 1xxxhdpi.png │ │ └── 资源 1xxxhdpi.psd │ │ └── zoteroPane.css ├── locale │ ├── en-US │ │ ├── addon.ftl │ │ ├── allAuthorWindow.ftl │ │ ├── mainWindow.ftl │ │ └── preferences.ftl │ └── zh-CN │ │ ├── addon.ftl │ │ ├── allAuthorWindow.ftl │ │ ├── mainWindow.ftl │ │ └── preferences.ftl ├── manifest.json └── prefs.js ├── eslint.config.mjs ├── package.json ├── package.json.new ├── readme_imgs ├── show-author-items-en.png ├── show-author-items-zh_cn.png └── show-author-items.png ├── src ├── addon.ts ├── hooks.ts ├── index.ts ├── modules │ ├── aliasEditor.ts │ ├── authorBrowserAddon.ts │ └── authorBrowserDialog.ts └── utils │ ├── locale.ts │ ├── prefs.ts │ ├── wait.ts │ ├── window.ts │ └── ztoolkit.ts ├── tsconfig.json ├── typings ├── global.d.ts ├── i10n.d.ts └── prefs.d.ts └── zotero-plugin.config.ts /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/toolkit.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/.vscode/toolkit.code-snippets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zhCN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/README-zhCN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/README.md -------------------------------------------------------------------------------- /Zotero Creator Statistic/creatorsCombination.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/Zotero Creator Statistic/creatorsCombination.sql -------------------------------------------------------------------------------- /Zotero Creator Statistic/creatorsCombinationResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/Zotero Creator Statistic/creatorsCombinationResult.sql -------------------------------------------------------------------------------- /Zotero Creator Statistic/creatorsCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/Zotero Creator Statistic/creatorsCount.sql -------------------------------------------------------------------------------- /Zotero Creator Statistic/creatorsCountCombination.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/Zotero Creator Statistic/creatorsCountCombination.sql -------------------------------------------------------------------------------- /addon/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/bootstrap.js -------------------------------------------------------------------------------- /addon/chrome/content/AliasEditor.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/chrome/content/AliasEditor.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/AllAuthorsWindow.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/chrome/content/AllAuthorsWindow.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/chrome/content/icons/favicon.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/chrome/content/icons/favicon@0.5x.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/资源 1xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/chrome/content/icons/资源 1xxxhdpi.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/资源 1xxxhdpi.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/chrome/content/icons/资源 1xxxhdpi.psd -------------------------------------------------------------------------------- /addon/chrome/content/zoteroPane.css: -------------------------------------------------------------------------------- 1 | .makeItRed { 2 | background-color: tomato; 3 | } 4 | -------------------------------------------------------------------------------- /addon/locale/en-US/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/locale/en-US/addon.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/allAuthorWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/locale/en-US/allAuthorWindow.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/mainWindow.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/locale/en-US/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/locale/en-US/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/locale/zh-CN/addon.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/allAuthorWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/locale/zh-CN/allAuthorWindow.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/mainWindow.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/locale/zh-CN/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/locale/zh-CN/preferences.ftl -------------------------------------------------------------------------------- /addon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/manifest.json -------------------------------------------------------------------------------- /addon/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/addon/prefs.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/package.json -------------------------------------------------------------------------------- /package.json.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/package.json.new -------------------------------------------------------------------------------- /readme_imgs/show-author-items-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/readme_imgs/show-author-items-en.png -------------------------------------------------------------------------------- /readme_imgs/show-author-items-zh_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/readme_imgs/show-author-items-zh_cn.png -------------------------------------------------------------------------------- /readme_imgs/show-author-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/readme_imgs/show-author-items.png -------------------------------------------------------------------------------- /src/addon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/addon.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/aliasEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/modules/aliasEditor.ts -------------------------------------------------------------------------------- /src/modules/authorBrowserAddon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/modules/authorBrowserAddon.ts -------------------------------------------------------------------------------- /src/modules/authorBrowserDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/modules/authorBrowserDialog.ts -------------------------------------------------------------------------------- /src/utils/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/utils/locale.ts -------------------------------------------------------------------------------- /src/utils/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/utils/prefs.ts -------------------------------------------------------------------------------- /src/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/utils/wait.ts -------------------------------------------------------------------------------- /src/utils/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/utils/window.ts -------------------------------------------------------------------------------- /src/utils/ztoolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/src/utils/ztoolkit.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/typings/global.d.ts -------------------------------------------------------------------------------- /typings/i10n.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/typings/i10n.d.ts -------------------------------------------------------------------------------- /typings/prefs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/typings/prefs.d.ts -------------------------------------------------------------------------------- /zotero-plugin.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenGLee/zotero-author-browser/HEAD/zotero-plugin.config.ts --------------------------------------------------------------------------------