Add a Note

Add a Note

Add notes and highlights to any webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add a Note",
  "version": "0.1",
  "description": "Add notes and highlights to any webpage",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "content.js",
        "Color.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "res/*",
    "templates.html"
  ],
  "icons": {
    "16": "res/postit-clip-16.png",
    "48": "res/postit-clip-48.png",
    "128": "res/postit-clip-128.png"
  },
  "browser_action": {
    "default_title": "Add a Note",
    "default_popup": "menu.html"
  },
  "manifest_version": 2
}