Anti Malware Subzero

Anti Malware Subzero

Protect your facebook account from malwares, detect and block infected and malicious requests

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "48.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "notify.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "js": [
        "end.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Protect your facebook account from malwares, detect and block infected and malicious requests",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyWb1lF4dZ6tH++9IqFyLn2vb+62zPtGh7sIdbaXfFhJiR+Bm+y+jt1u/XTnmXCGgjKUWbpMVRlaR/Y1s7NDJjkbHRwbEzLfNN7sQzuTtEfBSEleZPRtrdpG+V+2GWiKmNZdZOyhHppKG95/CuNGx6C7Pl0wxSkgNNW0BSnsiKjYGiL+MhreTY/wI/j9kFB4zS9tUK7VboExZRMIpo7U3Ew26a+SHi7oqgO/YQp69ipUoHBYOplcHocWYpNUkGLPxYSEwoQhRjuv1GUs3pA1kRZGOm2FBVW6IHjg6x3DZCgxV9PwcLGqURYbKFB55UtuENCQThNMrEMoEugWHp48rEwIDAQAB",
  "manifest_version": 2,
  "name": "Anti Malware Subzero",
  "options_page": "options/options.html",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "version": "2.7.0",
  "web_accessible_resources": [
    "page.js",
    "content/page-style.css",
    "inspector.js"
  ]
}