Tebux

Tebux

Tebux is an innovative browser extension that allows you to earn money by viewing advertising websites. With this extension, you…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tebux",
  "version": "1.0",
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": {
      "32": "icons/32.png",
      "128": "icons/128.png"
    }
  },
  "background": {
    "service_worker": "script/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "script/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "alarms"
  ]
}