├── .devcontainer └── devcontainer.json ├── .github ├── renovate.json ├── scripts │ ├── _redirects │ ├── build.sh │ └── index.html └── workflows │ ├── autofix.yml │ ├── build.yml │ ├── main.yml │ └── sync-to-gitee.yml ├── .gitignore ├── .husky └── pre-commit ├── .vscode └── extensions.json ├── LICENSE ├── README-zh.md ├── README.md ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── src ├── deprecated.ts ├── handler │ ├── charts-data.ts │ ├── file-cache.ts │ └── plugins-data.ts ├── index.ts ├── plugins.ts ├── types.ts └── utils │ ├── fs.ts │ ├── github.ts │ ├── index.ts │ └── string.ts └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/scripts/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.github/scripts/_redirects -------------------------------------------------------------------------------- /.github/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.github/scripts/build.sh -------------------------------------------------------------------------------- /.github/scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.github/scripts/index.html -------------------------------------------------------------------------------- /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/sync-to-gitee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.github/workflows/sync-to-gitee.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/deprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/deprecated.ts -------------------------------------------------------------------------------- /src/handler/charts-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/handler/charts-data.ts -------------------------------------------------------------------------------- /src/handler/file-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/handler/file-cache.ts -------------------------------------------------------------------------------- /src/handler/plugins-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/handler/plugins-data.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/plugins.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/utils/fs.ts -------------------------------------------------------------------------------- /src/utils/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/utils/github.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/src/utils/string.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero-chinese/zotero-plugins/HEAD/tsconfig.json --------------------------------------------------------------------------------