IsMyBrowserSafe

IsMyBrowserSafe

Make your browser safe

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IsMyBrowserSafe",
  "manifest_version": 2,
  "version": "1.0",
  "description": "Make your browser safe",
  "permissions": [],
  "browser_action": {
    "default_icon": "灯泡.png",
    "default_title": "Browser Safe",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/adsmanager/manage/accounts*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}