Updated instructions for "small tweaks to the Hypothesis client" outlined in Notes for an annotation SDK.
-
Clone the Hypothesis client: https://github.com/hypothesis/client
-
Clone the Hypothesis browser extension: https://github.com/hypothesis/browser-extension
-
Edit
browser-extension/gulpfile.js
addingconst IS_PRODUCTION_BUILD = false
. This turns off minification so it’s possible to read and debug the client code. -
Establish a link between the
client
andbrowser-extension
repos (see more details in references below):client$ yarn link browser-extension$ yarn link hypothesis browser-extension$ make build SETTINGS_FILE=settings/chrome-prod.json
# If you need to unlink: browser-extension$ yarn unlink hypothesis
-
Build the Chrome browser extension that authenticates to the Hypothesis production service.
browser-extension$ make build SETTINGS_FILE=settings/chrome-prod.json
-
In a Chromium browser (e.g. Chrome or Edge or Brave) use
chrome://extensions
, click Load unpacked, and point to thebrowser-extension/build
directory where you built the extension.
Make the changes shown in patches.js
- In
options/index.html
I added an input box to name an alternate server. - In
options/options.js
I sync that value to the cloud and also to the browser’s localStorage. - In the extension bundle I check localStorage for an alternate server and, if present, modify the API request used by the extension to show the number of notes found for a page.
- In the sidebar bundle I check localStorage for an alternate server and, if present, modify the API requests used to search for, create, update, and delete annotations.