SearchProtection

SearchProtection

Keep your search history private with SearchProtection: the anonymous search engine and privacy tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.1.3",
  "default_locale": "en_US",
  "homepage_url": "http://searchprotection.net",
  "background": {
    "persistent": true,
    "scripts": [
      "src/bg/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "src/inject/protect.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*/",
    "storage",
    "privacy"
  ],
  "web_accessible_resources": [
    "src/inject/protect.js",
    "icons/*.png"
  ]
}