Safe Surf

Safe Surf

Chili Security Safe Surf adds a strong and non-intrusive layer of security to your browsing experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "vendor/browser-polyfill.js",
      "app.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/Ico_Bar_Green.png",
    "default_popup": "pages/popup/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "vendor/react.production.min.js",
        "vendor/react-dom.production.min.js",
        "vendor/browser-polyfill.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ]
    }
  ],
  "default_locale": "en_US",
  "description": "__MSG_extName__",
  "icons": {
    "16": "img/context_menu_icon.png",
    "128": "img/extension_logo.png"
  },
  "manifest_version": 2,
  "name": "Safe Surf",
  "options_page": "pages/settings/settings.html",
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "http://*/",
    "https://*/",
    "nativeMessaging"
  ],
  "version": "3.1.4",
  "web_accessible_resources": [
    "img/*.png",
    "img/*.gif",
    "img/*.svg",
    "pages/blocked/blocked.html"
  ]
}