Reddit Ad Blocker - Hide Promoted Posts

Reddit Ad Blocker - Hide Promoted Posts

Block promoted posts and hide ads on Reddit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Reddit Ad Blocker - Hide Promoted Posts",
  "description": "Block promoted posts and hide ads on Reddit",
  "version": "1.0",
  "action": {
    "default_icon": "public/icon.png",
    "default_title": "Reddit Ad Blocker"
  },
  "icons": {
    "48": "public/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.reddit.com/*"
      ],
      "css": [
        "public/style.css"
      ],
      "run_at": "document_start"
    }
  ]
}