ProtectedSEARCH

ProtectedSEARCH

This extension will change your default search to https://protectedsearch.antimalwarecloud.com

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__",
  "version": "2.2.0",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "images/icons/icon-48.png",
    "default_popup": "index.html",
    "default_title": "__MSG_extDefaultTitle__"
  },
  "icons": {
    "16": "images/icons/icon-16.png",
    "48": "images/icons/icon-48.png",
    "128": "images/icons/icon-128.png"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "__MSG_extName__",
      "keyword": "PS",
      "search_url": "https://protectedsearch.antimalwarecloud.com/ps.php?q={searchTerms}",
      "favicon_url": "https://protectedsearch.antimalwarecloud.com/common/images/favicon.png",
      "suggest_url": "",
      "instant_url": "",
      "image_url": "",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "background": {
    "page": "background.html"
  },
  "externally_connectable": {
    "matches": [
      "*://protectedsearch.antimalwarecloud.com/*"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery.js",
        "js/purl.js",
        "/js/handler.js"
      ],
      "matches": [
        "*://*.bing.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://protectedsearch.antimalwarecloud.com/*"
      ],
      "js": [
        "js/no-popup.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/images/logo.png",
    "/images/info.png",
    "/images/safe.png",
    "/images/cross.png",
    "/js/jquery.js"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}