In-page Highlighter

In-page Highlighter

Instantly highlight anything you select in current page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "In-page Highlighter",
  "version": "0.7",
  "description": "__MSG_description__",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "j.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "get_options.js"
    ],
    "persistent": true
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icon.png",
      "38": "[email protected]"
    }
  },
  "options_page": "options.html"
}