Nanotation Deep Linker

Nanotation Deep Linker

Shares highlights and private notes on a page through a link.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "version": "0.5.0",
  "description": "__MSG_extension_desc__",
  "icons": {
    "16": "link-16x16.png",
    "48": "link-48x48.png",
    "128": "link-128x128.png"
  },
  "permissions": [
    "contextMenus",
    "clipboardWrite",
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "context_menu.js",
      "storage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "nanotation.css"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "manifest_version": 2
}