Browse Less

Browse Less

The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Browse Less",
  "description": "The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time.",
  "version": "1.1.0",
  "action": {
    "default_popup": "www/popup.html",
    "default_title": "Browse Less"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "www/js/main.js"
      ]
    }
  ],
  "icons": {
    "16": "www/img/icons/icon16.png",
    "48": "www/img/icons/icon48.png",
    "128": "www/img/icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}