Highlight Me

Highlight Me

This simple tool allows you to highlight selected text on web pages. - You can choose among a variety of background colors. - You…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Highlight Me",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "colorPick.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "Highlight.png",
    "default_popup": "index.html",
    "default_title": "Highlight Me"
  }
}