cyberTWEAK

cyberTWEAK

Mitigate risk of social engineering waterhole attacks by changing user agent string

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "cyberTWEAK",
  "description": "Mitigate risk of social engineering waterhole attacks by changing user agent string",
  "version": "1.0.2",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "options_page": "options.html",
  "web_accessible_resources": [
    "assets/top-1m.csv"
  ],
  "permissions": [
    "webRequest",
    "storage",
    "tabs",
    "webRequestBlocking",
    "https://*/*",
    "http://*/*"
  ],
  "background": {
    "scripts": [
      "/scripts/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/assets/cyberTweakLogo.png",
    "48": "/assets/cyberTweakLogo.png",
    "128": "/assets/cyberTweakLogo.png"
  }
}