Declutter

Declutter

The productivity chrome extension designed to make you aware of distractions and help you reduce their impact.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Declutter",
  "version": "0.0.1",
  "description": "The productivity chrome extension designed to make you aware of distractions and help you reduce their impact.",
  "author": "Vyas Narasimhan",
  "action": {
    "default_popup": "index.html",
    "default_title": "Declutter"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "storage",
    "tabGroups"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/inject.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}