HTTPS Protect

HTTPS Protect

Secure site with HTTPS

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_name__",
  "description": "__MSG_description__",
  "version": "1.1",
  "default_locale": "en",
  "background": {
    "scripts": [
      "main-thread.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "128": "images/logo.png"
    },
    "default_popup": "public/popup/index.html",
    "default_title": "__MSG_name__"
  },
  "icons": {
    "128": "images/logo.png"
  },
  "incognito": "spanning",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "<all_urls>",
    "tabs",
    "storage",
    "*://*/*",
    "ftp://*/*"
  ],
  "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
  "web_accessible_resources": [
    "/public/*"
  ]
}