This is a plugin template for Zotero.
📖 Plugin Development Documentation (Chinese, outdated)
📖 Plugin Development Documentation for Zotero 7
🛠️ Zotero Plugin Toolkit | API Documentation
📌 Zotero Plugin Template (This repo)
Tip
👁 Watch this repo so that you can be notified whenever there are fixes & updates.
If you are using this repo, I recommended that you put the following badge on your README:
[![Using Zotero Plugin Template](https://img.shields.io/badge/Using-Zotero%20Plugin%20Template-blue?style=flat-square&logo=github)](https://github.com/windingwind/zotero-plugin-template)
- Event-driven, functional programming, under extensive skeleton;
- Simple and user-friendly, works out-of-the-box.
- ⭐ [New!] Auto hot reload! Whenever the source code is modified, automatically compile and reload. See here→
- Abundant examples in
src/modules/examples.ts
, covering most of the commonly used APIs in plugins (using zotero-plugin-toolkit); - TypeScript support:
- Full type definition support for the whole Zotero project, which is written in JavaScript (using zotero-types);
- Global variables and environment setup;
- Plugin develop/build/release workflow:
- Automatically generate/update plugin id/version, update configrations, and set environment variables (
development
/production
); - Automatically build and reload code in Zotero;
- Automatically release to GitHub (using release-it);
- Automatically generate/update plugin id/version, update configrations, and set environment variables (
- Prettier and ES Lint integration.
Warning
The localization system is upgraded (dtd
is deprecated and we do not use .properties
anymore). Only supports Zotero 7.0.0-beta.12 or higher now. If you want to support Zotero 6, you may need to use dtd
, properties
, and ftl
at the same time. See the staled branch zotero6-bootstrap
.
This repo provides examples for zotero-plugin-toolkit APIs.
Search @example
in src/examples.ts
. The examples are called in src/hooks.ts
.
- registerNotifier
- registerPrefs, unregisterPrefs
- registerShortcuts
- exampleShortcutLargerCallback
- exampleShortcutSmallerCallback
- exampleShortcutConflictionCallback
- registerStyleSheet(the official make-it-red example)
- registerRightClickMenuItem
- registerRightClickMenuPopup
- registerWindowMenuWithSeprator
- registerExtraColumn
- registerExtraColumnWithCustomCell
- registerCustomItemBoxRow
- registerLibraryTabPanel
- registerReaderTabPanel
- Preferences bindings
- UI Events
- Table
- Locale
See src/modules/preferenceScript.ts
- dialogExample
- clipboardExample
- filePickerExample
- progressWindowExample
- vtableExample(See Preference Pane Examples)
An Obsidian-style prompt(popup command input) module. It accepts text command to run callback, with optional display in the popup.
Activate with Shift+P
.
- registerAlertPromptExample
- Install a beta version of Zotero: https://www.zotero.org/support/beta_builds
- Install Node.js and Git
Note
This guide assumes that you have an initial understanding of the basic structure and workings of the Zotero plugin. If you don't, please refer to the documentation and official plugin examples Make It Red first.
-
Click
Use this template
-
Git clone your new repo
💡 Start with GitHub Codespace
GitHub CodeSpace enables you getting started without the need to download code/IDE/dependencies locally.
Replace the steps above and build you first plugin in 30 seconds!
- Goto top of the homepage, click the green button
Use this template
, clickOpen in codespace
. You may need to login to your GitHub account. - Wait for codespace to load.
- Goto top of the homepage, click the green button
-
Enter the repo folder
-
Modify the settings in
./package.json
, including:{ version: "", // to 0.0.0 author: "", description: "", homepage: "", config: { addonName: "", // name to be displayed in the plugin manager addonID: "", // ID to avoid conflict. IMPORTANT! addonRef: "", // e.g. Element ID prefix addonInstance: "", // the plugin's root instance: Zotero.${addonInstance} prefsPrefix: "extensions.zotero.${addonRef}", // the prefix of prefs releasePage: "", // URL to releases updateJSON: "", // URL to update.json }, }
[!warning] Be careful to set the addonID and addonRef to avoid conflict.
If you need to host your XPI packages outside of GitHub, remove
releasePage
and addupdateLink
with the value set to your XPI download URL. -
Copy zotero command line config file. Modify the commands that starts your installation of the beta Zotero.
(Optional) Do this only once: Start the beta Zotero with
/path/to/zotero -p
. Create a new profile and use it as your development profile. Put the path of the profile into theprofilePath
inzotero-cmd.json
to specify which profile to use.cp ./scripts/zotero-cmd-template.json ./scripts/zotero-cmd.json vim ./scripts/zotero-cmd.json
-
Install dependencies with
npm install
If you are using
pnpm
as the package manager for your project, you need to addpublic-hoist-pattern[]=*@types/bluebird*
to.npmrc
, see https://github.com/windingwind/zotero-types?tab=readme-ov-file#usage.
Start development server with npm start
, it will:
- Prebuild the plugin in development mode
- Start Zotero with plugin loaded from
build/
- Open devtool
- Watch
src/**
andaddon/**
.- If
src/**
changed, run esbuild and reload - If
addon/**
has changed, rebuild the plugin (in development mode) and reload
- If
Tired of endless restarting? Forget about it!
- Run
npm start
. - Coding. (Yes, that's all)
When file changes are detected in src
or addon
, the plugin will be automatically compiled and reloaded.
💡 Steps to add this feature to an existing plugin
- Copy
scripts/**.mjs
- Copy
server
,build
, andstop
commands inpackage.json
- Run
npm install --save-dev chokidar
- Done.
You can also:
- Test code snipastes in Tools -> Developer -> Run Javascript;
- Debug output with
Zotero.debug()
. Find the outputs in Help->Debug Output Logging->View Output; - Debug UI. Zotero is built on the Firefox XUL framework. Debug XUL UI with software like XUL Explorer.
XUL Documentation: http://www.devdoc.net/web/developer.mozilla.org/en-US/docs/XUL.html
Run npm run build
to build the plugin in production mode, and the xpi for installation and the built code is under build
folder.
Steps in scripts/build.mjs
:
- Create/empty
build/
. - Copy
addon/**
tobuild/addon/**
- Replace placeholders: use
replace-in-file
to replace keywords and configurations defined inpackage.json
in non-build files (xhtml
,json
, et al.). - Prepare locale files to avoid conflict
- Rename
**/*.flt
to**/${addonRef}-*.flt
- Prefix each fluent message with
addonRef-
- Rename
- Use Esbuild to build
.ts
source code to.js
, buildsrc/index.ts
to./build/addon/chrome/content/scripts
. - (Production mode only) Zip the
./build/addon
to./build/*.xpi
- (Production mode only) Prepare
update.json
orupdate-beta.json
Note
What's the difference between dev & prod?
- This environment variable is stored in
Zotero.${addonInstance}.data.env
. The outputs to console is disabled in prod mode. - You can decide what users cannot see/use based on this variable.
- In production mode, the build script will pack the plugin and update the
update.json
.
To build and release, use
# A release-it command: version increase, npm run build, git push, and GitHub release
# release-it: https://github.com/release-it/release-it
npm run release
Note
In this template, release-it is configured to locally bump the version, build, and push commits and git.tags, subsequently GitHub Action will rebuild the plugin and publish the XPI to GitHub Release.
If you need to release a locally built XPI, set release-it.github.release
to true
in package.json
and remove .github/workflows/release.yml
. Besides that, you need to set the environment variable GITHUB_TOKEN
, get it in https://github.com/settings/tokens.
The template defines prerelease
as the beta version of the plugin, when you select a prerelease
version in release-it (with -
in the version number), the build script will create a new update-beta.json
for prerelease use, which ensures that users of the regular version won't be able to update to the beta, only users who have manually downloaded and installed the beta will be able to update to the next beta automatically. When the next regular release is updated, both update.json
and update-beta.json
will be updated so that both regular and beta users can update to the new regular release.
Warning
Strictly, distinguishing between Zotero 6 and Zotero 7 compatible plugin versions should be done by configuring applications.zotero.strict_min_version
in addons.__addonID__.updates[]
of update.json
respectively, so that Zotero recognizes it properly, see https://www.zotero.org/support/dev/zotero_7_for_developers#updaterdf_updatesjson.
See also
src/hooks.ts
- When install/enable/startup triggered from Zotero,
bootstrap.js
>startup
is called- Wait for Zotero ready
- Load
index.js
(the main entrance of plugin code, built fromindex.ts
) - Register resources if Zotero 7+
- In the main entrance
index.js
, the plugin object is injected underZotero
andhooks.ts
>onStartup
is called.- Initialize anything you want, including notify listeners, preference panes, and UI elements.
- When uninstall/disabled triggered from Zotero,
bootstrap.js
>shutdown
is called.events.ts
>onShutdown
is called. Remove UI elements, preference panes, or anything created by the plugin.- Remove scripts and release resources.
See also
src/index.ts
The bootstrapped plugin runs in a sandbox, which does not have default global variables like Zotero
or window
, which we used to have in the overlay plugins' window environment.
This template registers the following variables to the global scope:
Zotero, ZoteroPane, Zotero_Tabs, window, document, rootURI, ztoolkit, addon;
The plugin template provides new APIs for bootstrap plugins. We have two reasons to use these APIs, instead of the createElement/createElementNS
:
- In bootstrap mode, plugins have to clean up all UI elements on exit (disable or uninstall), which is very annoying. Using the
createElement
, the plugin template will maintain these elements. JustunregisterAll
at the exit. - Zotero 7 requires createElement()/createElementNS() → createXULElement() for remaining XUL elements, while Zotero 6 doesn't support
createXULElement
. The React.createElement-like APIcreateElement
detects namespace(xul/html/svg) and creates elements automatically, with the return element in the corresponding TS element type.
createElement(document, "div"); // returns HTMLDivElement
createElement(document, "hbox"); // returns XUL.Box
createElement(document, "button", { namespace: "xul" }); // manually set namespace. returns XUL.Button
Zotero docs are outdated and incomplete. Clone https://github.com/zotero/zotero and search the keyword globally.
⭐The zotero-types provides most frequently used Zotero APIs. It's included in this template by default. Your IDE would provide hint for most of the APIs.
A trick for finding the API you want:
Search the UI label in .xhtml
/.flt
files, find the corresponding key in locale file. Then search this keys in .js
/.jsx
files.
This section shows the directory structure of a template.
- All
.js/.ts
code files are in./src
; - Addon config files:
./addon/manifest.json
; - UI files:
./addon/chrome/content/*.xhtml
. - Locale files:
./addon/locale/**/*.flt
; - Preferences file:
./addon/prefs.js
;Don't break the lines in the
prefs.js
.
|-- .eslintrc.json # eslint conf
|-- .gitattributes # git conf
|-- .github/ # github conf
|-- .gitignore # git conf
|-- .prettierrc # prettier conf
|-- .release-it.json # release-it conf
|-- .vscode # vs code conf
| |-- extensions.json
| |-- launch.json
| |-- setting.json
| `-- toolkit.code-snippets
|-- package-lock.json # npm conf
|-- package.json # npm conf
|-- LICENSE
|-- README.md
|-- addon
| |-- bootstrap.js # addon load/unload script, like a main.c
| |-- chrome
| | `-- content
| | |-- icons/
| | |-- preferences.xhtml # preference panel
| | `-- zoteroPane.css
| |-- locale # locale
| | |-- en-US
| | | |-- addon.ftl
| | | `-- preferences.ftl
| | `-- zh-CN
| | |-- addon.ftl
| | `-- preferences.ftl
| |-- manifest.json # addon config
| `-- prefs.js
|-- build/ # build dir
|-- scripts # scripts for dev
| |-- build.mjs # script to build plugin
| |-- scripts.mjs # scripts send to Zotero, such as reload, openDevTool, etc
| |-- server.mjs # script to start a development server
| |-- start.mjs # script to start Zotero process
| |-- stop.mjs # script to kill Zotero process
| |-- utils.mjs # utils functions for dev scripts
| |-- update-template.json # template of `update.json`
| `-- zotero-cmd-template.json # template of local env
|-- src # source code
| |-- addon.ts # base class
| |-- hooks.ts # lifecycle hooks
| |-- index.ts # main entry
| |-- modules # sub modules
| | |-- examples.ts
| | `-- preferenceScript.ts
| `-- utils # utilities
| |-- locale.ts
| |-- prefs.ts
| |-- wait.ts
| `-- window.ts
|-- tsconfig.json # https://code.visualstudio.com/docs/languages/jsconfig
|-- typings # ts typings
| `-- global.d.ts
`-- update.json
Use this code under AGPL. No warranties are provided. Keep the laws of your locality in mind!
If you want to change the license, please contact me at [email protected]