Big Block Brasil (Bloqueador do BBB)

Big Block Brasil (Bloqueador do BBB)

Elimine o BBB da web. Também disponível para Chrome: http://br.mozdev.org/bbb/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDesc__",
  "version": "1.2.0",
  "author": "Jeferson Hultmann",
  "homepage_url": "http://br.mozdev.org/bbb/",
  "default_locale": "pt_BR",
  "applications": {
    "gecko": {
      "id": "bbb@hultmann",
      "strict_min_version": "64.0"
    }
  },
  "icons": {
    "32": "icon32.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "32": "icon32.png",
      "128": "icon128.png"
    },
    "default_popup": "popup.html"
  }
}