Caption

Caption

Capture webpage and annotate it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Caption",
  "description": "Capture webpage and annotate it.",
  "version": "0.9.0",
  "content_scripts": [],
  "action": {
    "default_icon": "public/popup-icon.png",
    "default_popup": "pages/popup.html",
    "default_title": "Caption"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "128": "public/icon-128.png"
  }
}