# Zotero Plugin Template          This is a plugin template for [Zotero](https://www.zotero.org/). Plugins using this template are shown above. π[Plugin Development Documentation](https://zotero.yuque.com/books/share/8d230829-6004-4934-b4c6-685a7001bfa0/vec88d)(Chinese, provides English translation) π οΈ[Zotero Plugin Toolkit](https://github.com/windingwind/zotero-plugin-toolkit) | [API Documentation](https://github.com/windingwind/zotero-plugin-toolkit/blob/master/docs/zotero-plugin-toolkit.md) βΉοΈ[Zotero Type Definitions](https://github.com/windingwind/zotero-types) π[Zotero Source Code](https://github.com/zotero/zotero) π[Zotero Plugin Template](https://github.com/windingwind/zotero-plugin-template)(This repo) > πYou are currently in `bootstrap` extension mode. To use `overlay` mode, plsase switch to `overlay` branch in git. > π Watch this repo so that you can be notified whenever there are fixes & updates. ## Features - Event-driven, functional programming, under extensive skeleton; - Simple and user-friendly, works out-of-the-box. - Abundant examples in `src/modules/examples.ts`, covering most of the commonly used APIs in plugins(using [zotero-plugin-toolkit](https://github.com/windingwind/zotero-plugin-toolkit)); - TypeScript support: - Full type definition support for the whole Zotero project, which is written in JavaScript(using [zotero-types](https://github.com/windingwind/zotero-types)); - Global variables and environment setup; - Plugin build/test/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](https://github.com/release-it/release-it)); - β[New!]Compatibilities for Zotero 6 & Zotero 7.(using [zotero-plugin-toolkit](https://github.com/windingwind/zotero-plugin-toolkit)) ## Examples This repo provides examples for [zotero-plugin-toolkit](https://github.com/windingwind/zotero-plugin-toolkit) APIs. Search `@example` in `src/examples.ts`. The examples are called in `src/hooks.ts`. ### Basic Examples - registerNotifier - registerPrefs, unregisterPrefs ### Shortcut Keys Examples - registerShortcuts - exampleShortcutLargerCallback - exampleShortcutSmallerCallback - exampleShortcutConflictionCallback ### UI Examples  - registerStyleSheet(the official make-it-red example) - registerRightClickMenuItem - registerRightClickMenuPopup - registerWindowMenuWithSeprator - registerExtraColumn - registerExtraColumnWithCustomCell - registerCustomCellRenderer - registerLibraryTabPanel - registerReaderTabPanel - unregisterUIExamples ## Quick Start Guide - Fork this repo; - Git clone the forked repo; - Enter the repo folder; - Modify the settings in `./package.json`, including: ``` version, author, description, homepage, config { releasepage, updaterdf, addonName, addonID, addonRef } ``` > Be careful to set the addonID and addonRef to avoid confliction. - Run `npm install` to set up the plugin and install dependencies. If you don't have NodeJS installed, please download it [here](https://nodejs.org/en/); - Run `npm run build` to build the plugin in production mode. Run `npm run build-dev` to build the plugin in development mode. The xpi for installation and the built code is under `builds` folder. > What the difference between dev & prod? > > - This environment variable is stored in `Zotero.AddonTemplate.data.env`. The outputs to console is disabled in prod mode. > - You can decide what users cannot see/use based on this variable. ### About Hooks > See also [`src/hooks.ts`](https://github.com/windingwind/zotero-plugin-template/blob/bootstrap/src/hooks.ts) 1. 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 from `index.ts`) - Register resources if Zotero 7+ 2. In the main entrance `index.js`, the plugin object is injected under `Zotero` and `hooks.ts` > `onStartup` is called. - Initialize anything you want, including notify listeners, preference panes, and UI elements. 3. 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. ### About Global Variables > See also [`src/index.ts`](https://github.com/windingwind/zotero-plugin-template/blob/bootstrap/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: ```ts Zotero, ZoteroPane, Zotero_Tabs, window, document, rootURI, ztoolkit, addon; ``` ### About Preference Zotero 6 doesn't support preference pane injection in bootstrap mode, thus I write a register for Zotero 6 or lower. You only need to maintain one `preferences.xhtml` which runs natively on Zotero 7 and let the plugin template handle it when it is running on Zotero 6.
![]() Zotero 7
|
![]() Zotero 6
|