Beeswax

Beeswax

Reduce time spent on social media by blocking recommendations on YouTube, keeping track of Instagram posts, and tallying tweets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Beeswax",
  "version": "1.1",
  "description": "Reduce time spent on social media by blocking recommendations on YouTube, keeping track of Instagram posts, and tallying tweets.",
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs"
  ],
  "action": {
    "default_icon": {
      "16": "images/bee.png",
      "32": "images/bee.png",
      "48": "images/bee.png",
      "128": "images/bee.png"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "images/bee.png",
    "32": "images/bee.png",
    "48": "images/bee.png",
    "128": "images/bee.png"
  },
  "host_permissions": [
    "https://*/*"
  ]
}