Examine source code of HKUL Search Assistant

Inspect and view changes in HKUL Search Assistant source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HKUL Search Assistant",
  "description": "Search the HKU Libraries Catalogue without leaving your current page",
  "version": "3.0.20",
  "author": "HKU Libraries",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "action": {
    "default_icon": "images/icons/icon128.png",
    "default_popup": "popup.html",
    "default_title": "HKUL Search Assistant"
  },
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "tabs",
    "storage"
  ]
}