smart-browsing

smart-browsing

Smart Browsing is a helpful tool that assists users with a better web experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "smart-browsing ",
  "homepage_url": "https://smart-browsing.net",
  "description": "Smart Browsing is a helpful tool that assists users with a better web experience",
  "version": "2.4",
  "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"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}