My Financial Expert Safe Browser

My Financial Expert Safe Browser

[11] The Safe Browsing Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.0",
  "name": "My Financial Expert Safe Browser",
  "description": "[11] The Safe Browsing Extension",
  "icons": {
    "48": "/images/icon-48.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "webNavigation",
    "https://*/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "background/index.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://url.invalid/*"
      ],
      "js": [
        "content/cognito-redirect-handler.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "*.png",
    "fonts/*"
  ],
  "browser_action": {
    "default_icon": {
      "48": "/images/status-disabled-48.png"
    },
    "default_title": "SafeBrowsingExtension",
    "default_popup": "html/popup.html"
  },
  "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self';"
}