2022-12-16 19:03:25 +08:00
2022-11-28 12:18:39 +08:00
2022-08-20 02:42:12 +08:00
2022-08-20 02:42:12 +08:00
2022-08-20 02:42:12 +08:00
2022-12-15 11:40:34 +08:00
2022-08-20 02:42:12 +08:00
2022-12-16 18:19:00 +08:00
2022-12-16 19:03:25 +08:00
2022-08-20 02:42:12 +08:00
2022-08-20 02:42:12 +08:00
2022-08-20 02:42:12 +08:00
2022-12-15 20:39:13 +08:00
2022-12-15 11:40:34 +08:00
2022-12-16 18:19:00 +08:00
2022-12-16 18:19:00 +08:00
2022-08-20 02:42:12 +08:00

Zotero Addon Template

This is an addon/plugin template for Zotero.

Documentation(Chinese, provides English translation)

👍You are currently in bootstrap extension mode. To use overlay mode, plsase switch to overlay branch in git.

⚠️overlay mode will no longer be supported in the coming Zotero 7. Please use the bootstrap extension mode instead. See discussion here: https://groups.google.com/g/zotero-dev/c/TT_rcLVpQwg

Features

  • TypeScript support;
  • Build addon settings and versions automatically;
  • Build and reload code in Zotero automatically;
  • Release to GitHub automatically(using release-it);
  • Extensive skeleton;
  • Some sample code of UI and lifecycle.
  • Compatibilities for Zotero 6 & Zotero 7.

Quick Start Guide

  • Fork this repo;
  • Git clone the forked repo;
  • Enter the repo folder;
  • Modify the settings in ./package.json, including:
  author,
  description,
  homepage,
  releasepage,
  updaterdf,
  addonName,
  addonID,
  addonRef

Be careful to set the addonID and addonRef to avoid confliction.

  • Run npm install to setup the plugin and install dependencies. If you don't have NodeJS installed, please download it here;
  • Run npm run build to build the plugin. The xpi for installation and the built code is under builds folder.

Examples

Menu (file, edit, view, ...) & Right-click Menu (item, collection/library)

File Menu

image

574ce88b9f/src/views.ts (L52-L60)

Item Menu

image

574ce88b9f/src/views.ts (L23-L51)

Utils.UI.insertMenuItem resolved the input object and inject the menu items.

Available types menuFile, menuEdit, ...:

defaultMenuPopupSelectors: {
  menuFile: "#menu_FilePopup",
  menuEdit: "#menu_EditPopup",
  menuView: "#menu_viewPopup",
  menuGo: "#menu_goPopup",
  menuTools: "#menu_ToolsPopup",
  menuHelp: "#menu_HelpPopup",
  collection: "#zotero-collectionmenu",
  item: "#zotero-itemmenu",
},

You can choose an anchor element and insert before/after it using insertPosition and anchorElement. Default the insert position is the end of menu.

insertMenuItem: (
  menuPopup: XUL.Menupopup | string,
  options: MenuitemOptions,
  insertPosition?: "before" | "after",
  anchorElement?: XUL.Element
) => boolean;

Full options you can use:

declare interface MenuitemOptions {
  tag: "menuitem" | "menu" | "menuseparator";
  id?: string;
  label?: string;
  // data url (chrome://xxx.png) or base64 url (data:image/png;base64,xxx)
  icon?: string;
  class?: string;
  styles?: { [key: string]: string };
  hidden?: boolean;
  disabled?: boolean;
  oncommand?: string;
  commandListener?: EventListenerOrEventListenerObject;
  // Attributes below are used when type === "menu"
  popupId?: string;
  onpopupshowing?: string;
  subElementOptions?: Array<MenuitemOptions>;
}

Preference, for both Zotero 6 and Zotero 7 (all in bootstrap)

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 when it is running on Zotero 6.

Zotero 7
Zotero 6

574ce88b9f/src/views.ts (L63-L82)

Call Utils.Compat.registerPrefPane when it's on Zotero 6. Please make sure defaultXUL is set true as Zotero 6 requires that.

Remember to call Utils.Compat.unregisterPrefPane() on plugin onload.

574ce88b9f/src/views.ts (L88-L90)

Create Elements API

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 Utils.UI.createElement, the plugin template will maintain these elements. Just Utils.UI.removeAddonElements on exit.
  • Zotero 7 requires createElement()/createElementNS() → createXULElement() for remaining XUL elements, while on Zotero 6 doesn't support createXULElement. Using Utils.UI.createElement, it switches API depending on the current platform automatically.

Definition:

function createElement (
  doc: Document,
  tagName: string,
  namespace: "html" | "svg" | "xul"
) => XUL.Element | DocumentFragment | HTMLElement | SVGAElement;

There are more advanced APIs for creating elements in batch: Uitls.UI.creatElementsFromJSON. Input a element tree in JSON and return a fragment/element. These elements are also maintained by plugin template.

Definition:

function creatElementsFromJSON (
  doc: Document,
  options: ElementOptions
) => XUL.Element | DocumentFragment | HTMLElement | SVGAElement;

Available options:

declare interface ElementOptions {
  tag: string;
  id?: string;
  namespace?: "html" | "svg" | "xul";
  styles?: { [key: string]: string };
  directAttributes?: { [key: string]: string | boolean | number };
  attributes?: { [key: string]: string | boolean | number };
  listeners?: Array<
    | [
        string,
        EventListenerOrEventListenerObject,
        boolean | AddEventListenerOptions
      ]
    | [string, EventListenerOrEventListenerObject]
  >;
  checkExistanceParent?: HTMLElement;
  ignoreIfExists?: boolean;
  removeIfExists?: boolean;
  customCheck?: () => boolean;
  subElementOptions?: Array<ElementOptions>;
}

Directory Structure

This section shows the directory structure of a template.

  • All .js/.ts code files are in ./src;
  • Addon config files: ./addon/chrome.manifest, ./addon/install.rdf;
  • UI files: ./addon/chrome/content/*.xul. The overlay.xul also defines the main entrance;
  • Locale files: ./addon/chrome/locale/*.dtd;
  • Resource files: ./addon/chrome/skin/default/__addonRef__/*.dtd;
  • Preferences file: ./addon/chrome/defaults/preferences/defaults.js;

    Don't break the lines in the defaults.js

│  .gitignore
│  .release-it.json # release-it conf
|  tsconfig.json    # https://code.visualstudio.com/docs/languages/jsconfig#
│  build.js         # esbuild
│  LICENSE
│  package.json     # npm conf
│  README.md        # readme
│  update.rdf       # addon update
│
├─.github           # github conf
│
├─addon             # addon dir
│  │  chrome.manifest  #addon conf
│  │  install.rdf   # addon install conf
│  │  bootstrap.js  # addon load/unload script, like a main.c
│  │
│  └─chrome
│      ├─content    # UI
│      │  │  preferences.xhtml
│      │  │
│      │  ├─icons
│      │  │      favicon.png
│      │  │      favicon@0.5x.png
│      │  │
│      │  └─scripts
│      └─locale     # locale
│         ├─en-US
│         │      overlay.dtd
│         │
│         └─zh-CN
│                overlay.dtd
│
├─builds            # build dir
│  └─.xpi
│
└─src               # source code
    │  index.ts     # main entry
    │  module.ts    # module class
    │  addon.ts     # base class
    │  events.ts    # events class
    │  utils.ts     # Utils class
    │  views.ts     # UI class
    └─ prefs.ts     # preferences class

Build

# A release-it command: version increase, npm run build, git push, and GitHub release
# You need to set the environment variable GITHUB_TOKEN https://github.com/settings/tokens
# release-it: https://github.com/release-it/release-it
npm run release

Alternatively, build it directly using build.js: npm run build

Build Steps

  1. Clean ./builds
  2. Copy ./addon to ./builds
  3. Esbuild to ./builds/addon/chrome/content/scripts
  4. Replace __buildVersion__ and __buildTime__ in ./builds/addon
  5. Zip the ./builds/addon to ./builds/*.xpi

Debug

  1. Copy zotero command line config file. Modify the commands.
cp zotero-cmd-default.json zotero-cmd.json
  1. Setup addon development environment following this link.

  2. Build addon and restart Zotero with this npm command.

  3. Launch Firefox 60

  4. In Firefox, go to devtools, go to settings, click "enable remote debugging" and the one next to it that's also about debugging(or press shift+F8).

  5. In Zotero, go to setting, advanced, config editor, look up "debugging" and click on "allow remote debugging"

  6. In Firefox, click the hamburger menu in the top right -> web developer -> Connect...

  7. Enter localhost:6100

  8. Connect

  9. Click "Inspect Main Process"

npm run restart

You can also debug code in these ways:

Development

Search for a Zotero API
Zotero docs are outdated or incomplete. Searching the source code of Zotero is unavoidable.
Clone https://github.com/zotero/zotero and search the keyword globally. You can search the UI text in .xul/.dtd files, and then search the keys of the text value in .js/.xul files.

The zotero-types provides most frequently used Zotero APIs. It's included in this template by default.

Disclaimer

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 wyzlshx@foxmail.com

Part of the code of this repo refers to other open-source projects within the allowed scope.

  • zotero-better-bibtex(d.ts)

Zotero Addons Build with the Template

Description
No description provided
Readme 1 MiB
Languages
TypeScript 90.6%
Fluent 4.4%
JavaScript 2.9%
HTML 2%