git clone --recursive https://github.com/zotero/zotero-connectors.git
cd zotero-connectors
npm install
./build.sh -d
The connectors are built in build/
.
- Go to chrome://extensions/
- Enable "Developer Mode".
- Click "Load unpacked extension…" and select the
build/browserExt
directory.
- Go to about:debugging
- Click "Load Temporary Add-on" and select the
build/browserExt/manifest.json
file.
OR
- Get and install the Mozilla web-ext tool
cd
to project root./scripts/firefox/run_xpi
See https://github.com/zotero/safari-app-extension
brew install chrome-cli
npm install -g gulp
cd
to project rootnpm install
build.sh -d
gulp watch-chrome
As files are changed, the connectors will be rebuilt automatically and Chrome will reload the extension.
- Get and install the Mozilla web-ext tool
cd
to project rootnpm install
build.sh -d
gulp watch
./scripts/firefox/run_xpi
(in a different terminal window)
As files are changed, the connectors will be rebuilt automatically and Firefox will reload the extension.
cd
to project rootnpm install
build.sh -d
gulp watch
As files are changed, the connectors will be rebuilt automatically. You will need to manually reload the extension in the browser being developed for.
- Copy
config.sh-sample
toconfig.sh
and modify as necessary - Safari/Chrome extension certificates
- Google Chrome or Chromium
- xar with patch for building Safari extensions
To run tests locally, build the extension with the -d flag, and then run
$ ./test/run_tests -p c
Test files are located at src/common/test
. See src/common/test/testSetup.js
for
test framework documentation
Zotero Connectors are built with standard tools, such as browser extension APIs, but the architecture is quite complex. This section is a short overview of some of the complexities, to make it more accessible for newcomers.
The functionality exposed on Chrome and Firefox is provided by the Chrome extension framework, which has also been adopted by Firefox. See Chrome Extension docs and Firefox Extension docs for more information.
For Safari specifics see https://github.com/zotero/safari-app-extension
The Connectors share code with Zotero desktop application, to support translation. A basic understanding of how translation works or at least the handlers it exposes in Zotero will be highly useful in understanding the codebase.
Saving resources to Zotero library is facilitated by two major components: the Zotero Connector running in the browser and either the Zotero client or zotero.org web api. The Zotero Connector itself is split into two components: code running on the webpage and a background process.
Each webpage is injected (Chrome/Firefox/Safari) with a full Zotero translation framework. A Zotero.Translate.Web instance orchestrates running individual translators for detection and translation.
The translation framework shares some code with the Zotero codebase and provides custom classes concerning translator retrieval and item saving. These custom classes talk to the background process (b) of the Zotero Connector for functionality outside the translation framework, such as retrieving translator code and sending translated items either to Zotero (c) or zotero.org (d).
The Connector runs a background process (Chrome/Firefox/Safari) which works as a middle-layer between the translation framework running in inject scripts (a) and Zotero (c) or zotero.org (d).
The background process maintains a cache of translators and performs the initial translator detection using URL matching.
Translators whose target regexp matches the URL of a given webpage are then further tested by running detectWeb()
in injected scripts. A list of translators and their code is
fetched either from Zotero (c) or zotero.org (d).
The background process is also responsible for updating the extension UI, kicking off translations, storing and retrieving connector preferences and sending translated items to Zotero or zotero.org. Browser specific scripts are available for BrowserExt and Safari.
When Zotero is open it runs a connector HTTP server on port 23119. The HTTP server API accommodates interactions between the Connectors and Zotero client. Calls to Zotero.Connector.callMethod(endpoint) in this codebase are translated to HTTP requests to the connector server.
Note that Zotero cannot interact with the connectors on its own accord. All communication is Connector initiated.
When Zotero is not available item saving falls back to using zotero.org API. The interactions with zotero.org API are defined in api.js
The only way for the background extension process and injected scripts to communicate is using the message passing protocol provided by the browsers (Chrome/Firefox/Safari). Injected scripts often need to communicate to background scripts. To simplify these interactions, calls to functions in background scripts are monkey-patched in injected scripts. These calls are asynchronous and if a return value is required, it is provided either to a callback function as the last argument of the call or as a resolving value of a promise returned.
messages.js contains the list of the monkey-patched methods. If the method value is false no response is expected, otherwise the calls provide a response. An optional pre-send processing on the background end and post-receive processing on the injected end is possible to treat values that cannot be sent as-is via the messaging protocol.
The background process registers message listeners in messaging.js.
Zotero.Messaging
class also provides a way to send messages to injected scripts and add custom message listeners.
The injected scripts monkey-patch methods in messaging_injected.js(BrowserExt/Safari)
Zotero.Messaging
class also provides a way to send messages to the background process and add message listeners.
The build process combines files from the Zotero codebase, common files to all connectors and specific files for Chrome/Firefox/Safari connectors. At the moment the build process is awkward and uses a SH script and gulp procedures. This will be reconciled in the future to only use gulp.
build.sh
copies images and extension filesgulp process-custom-files
initiated bybuild.sh
performs post-processing on copied files
If you have any questions about developing Zotero Connectors you can join the discussion in the zotero-dev mailing list.