WebNote Highlighter

WebNote Highlighter

Are you someone who finds it difficult to remember things? Are you continuously trying to recall the keyword which you just read…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WebNote Highlighter",
  "version": "0.01",
  "icons": {
    "16": "app-icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "Notes",
    "default_popup": "index.html",
    "default_icon": "app-icon.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "downloads"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content_css.css"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "pin-icon.png",
    "tooltip-background.svg",
    "app-icon.png"
  ]
}