BBB Vote Counter

BBB Vote Counter

Conte os seus votos de maneira fácil! Mas fique ligado, esta extensão só funciona com o reality show Big Brother Brasil.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.0",
  "name": "BBB Vote Counter",
  "description": "Conte os seus votos de maneira fácil! Mas fique ligado, esta extensão só funciona com o reality show Big Brother Brasil.",
  "author": "Gabriel Coelho",
  "permissions": [
    "webRequest",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*.globo.com/*"
  ],
  "icons": {
    "16": "./src/assets/wall16.png",
    "48": "./src/assets/wall48.png",
    "64": "./src/assets/wall64.png",
    "128": "./src/assets/wall128.png"
  },
  "action": {
    "default_popup": "src/pages/popup.html"
  },
  "options_page": "src/pages/options.html",
  "content_scripts": [
    {
      "matches": [
        "https://gshow.globo.com/realities/bbb/*",
        "https://gshow.especiaisgshow.globo/*"
      ],
      "js": [
        "src/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "minimum_chrome_version": "92",
  "background": {
    "service_worker": "src/background.js",
    "type": "module"
  },
  "content_security_policy": {}
}