Search Highlighter

Search Highlighter

The Digiting Search Highlighter is the simplest way to search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "name": "Search Highlighter",
  "version": "1.0.2",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "toolbar.js",
        "lib/jquery-1.7.1.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "https://chrome.google.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "The Digiting Search Highlighter is the simplest way to search.",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self' ",
  "permissions": [
    "history",
    "tabs"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "toolbarWindow.html"
  ]
}