Keywords Highlighter

Keywords Highlighter

Keywords Highlighter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Keywords Highlighter"
  },
  "description": "Keywords Highlighter.",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.12.0.min.js",
        "search-highlight-0.33.min.js",
        "highlighter.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "name": "Keywords Highlighter",
  "version": "1.2",
  "homepage_url": "http://gadelkareem.com/",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}