note it

note it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "note it",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "http://*/",
    "https://*/",
    "storage",
    "downloads"
  ],
  "icons": {
    "32": "popups/images/favicon.png"
  },
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "popups/images/favicon.png",
    "default_popup": "popups/index.html"
  },
  "web_accessible_resources": [
    "images/*.jpg"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}