Multi Highlight

Multi Highlight

highlight multiple text on web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Multi Highlight",
  "version": "0.1.1",
  "description": "highlight multiple text on web pages.",
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "350": "img/icon350.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "jquery.highlight.js",
        "app.js"
      ],
      "css": [
        "highlight.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "jquery.highlight.js",
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F",
        "chromeos": "Ctrl+Shift+F",
        "linux": "Ctrl+Shift+F"
      },
      "description": "Activate the extension"
    }
  },
  "permissions": [
    "activeTab",
    "http://*/*",
    "https://*/*",
    "storage"
  ]
}