Web Page Annotator

Web Page Annotator

Add-on, to easily add annotation functionality to any webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "assets/icon_16.png",
      "38": "assets/icon_128.png"
    }
  },
  "content_scripts": [
    {
      "css": [
        "data/css/annotator.css"
      ],
      "js": [
        "data/js/vendor/jquery.js",
        "data/js/pkg/annotator-full.js",
        "data/js/pkg/annotator.offline.js",
        "data/js/add-annotation.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "description": "Add-on, to easily add annotation functionality to any webpage",
  "icons": {
    "16": "assets/icon_16.png",
    "128": "assets/icon_128.png"
  },
  "manifest_version": 2,
  "name": "Web Page Annotator",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "webRequestBlocking",
    "tabs",
    "webNavigation",
    "webRequest",
    "storage",
    "contextMenus",
    "notifications",
    "bookmarks",
    "contentSettings"
  ],
  "version": "1.1.2",
  "web_accessible_resources": [
    "data/images/*.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}