Highlighter + Notes

Highlighter + Notes

Highlighter and Notes for Webpages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Highlighter + Notes",
  "version": "1.0.0",
  "description": "Highlighter and Notes for Webpages",
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "64": "images/icon_64.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": "images/icon_128.png",
    "default_popup": "popup/highlighter-popup.html",
    "default_title": "Highlighter + Notes"
  },
  "author": "Prateek Chawla",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/highlighter-util.js",
        "content-scripts/highlighter.js",
        "content-scripts/dispatch-highlighter.js",
        "content-scripts/render-highlights.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "commands": {
    "add-highlight": {
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "Command+Shift+H"
      },
      "description": "Add Highlight"
    },
    "remove-highlight": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Remove Highlight"
    }
  }
}