Simple Word Highlighter

Simple Word Highlighter

This extension highlights words on a webpage as specified by the user

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Word Highlighter",
  "description": "This extension highlights words on a webpage as specified by the user",
  "version": "1.0",
  "background": {
    "scripts": [
      "Configure.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "ModifyPage.js"
      ],
      "css": [
        "Highlight.css"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ]
}