Better Webb

Better Webb

Better Webb is created for novice or uninformed users browse the internet in a way that allows them to understand it better

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Better Webb",
  "homepage_url": "https://betterwebb.com",
  "description": "Better Webb is created for novice or uninformed users browse the internet in a way that allows them to understand it better",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "worker.js"
  },
  "action": {
    "default_icon": "logo-128.png"
  },
  "icons": {
    "128": "logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "performance.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "webNavigation",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}