├── .eslintrc.json ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .prettierrc ├── .release-it.json ├── .vscode ├── extensions.json ├── launch.json ├── setting.json └── toolkit.code-snippets ├── LICENSE ├── README.md ├── addon ├── bootstrap.js ├── chrome │ └── content │ │ ├── icons │ │ ├── favicon.png │ │ └── favicon@0.5x.png │ │ ├── preferences.xhtml │ │ └── zoteroPane.css ├── locale │ ├── en-US │ │ ├── addon.ftl │ │ └── preferences.ftl │ └── zh-CN │ │ ├── addon.ftl │ │ └── preferences.ftl ├── manifest.json └── prefs.js ├── package.json ├── scripts ├── build.mjs ├── reload.mjs ├── start.mjs └── stop.mjs ├── src ├── addon.ts ├── hooks.ts ├── index.ts ├── modules │ ├── examples.ts │ ├── preferenceScript.ts │ └── rename.ts └── utils │ ├── locale.ts │ ├── prefs.ts │ ├── wait.ts │ └── window.ts ├── tsconfig.json ├── typing └── global.d.ts ├── update-template.json └── update.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2 3 | } 4 | -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/.release-it.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/.vscode/setting.json -------------------------------------------------------------------------------- /.vscode/toolkit.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/.vscode/toolkit.code-snippets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/README.md -------------------------------------------------------------------------------- /addon/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/bootstrap.js -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/chrome/content/icons/favicon.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/chrome/content/icons/favicon@0.5x.png -------------------------------------------------------------------------------- /addon/chrome/content/preferences.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/chrome/content/preferences.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/zoteroPane.css: -------------------------------------------------------------------------------- 1 | .makeItRed { 2 | background-color: tomato; 3 | } 4 | -------------------------------------------------------------------------------- /addon/locale/en-US/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/locale/en-US/addon.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/locale/en-US/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/locale/zh-CN/addon.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/locale/zh-CN/preferences.ftl -------------------------------------------------------------------------------- /addon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/manifest.json -------------------------------------------------------------------------------- /addon/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/addon/prefs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/scripts/build.mjs -------------------------------------------------------------------------------- /scripts/reload.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/scripts/reload.mjs -------------------------------------------------------------------------------- /scripts/start.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/scripts/start.mjs -------------------------------------------------------------------------------- /scripts/stop.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/scripts/stop.mjs -------------------------------------------------------------------------------- /src/addon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/addon.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/modules/examples.ts -------------------------------------------------------------------------------- /src/modules/preferenceScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/modules/preferenceScript.ts -------------------------------------------------------------------------------- /src/modules/rename.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/modules/rename.ts -------------------------------------------------------------------------------- /src/utils/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/utils/locale.ts -------------------------------------------------------------------------------- /src/utils/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/utils/prefs.ts -------------------------------------------------------------------------------- /src/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/utils/wait.ts -------------------------------------------------------------------------------- /src/utils/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/src/utils/window.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typing/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/typing/global.d.ts -------------------------------------------------------------------------------- /update-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/update-template.json -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/zotero-pdf-custom-rename/HEAD/update.json --------------------------------------------------------------------------------