Reddit Promoted Ad Blocker

Reddit Promoted Ad Blocker

Hide those pesky promoted Reddit ads that look like human posts!

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 Promoted Ad Blocker",
  "description": "Hide those pesky promoted Reddit ads that look like human posts!",
  "version": "1.4",
  "action": {
    "default_icon": {
      "16": "icon.png"
    }
  },
  "icons": {
    "16": "icon.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.reddit.com/*",
        "*://old.reddit.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "scripts.js"
      ]
    }
  ],
  "host_permissions": [
    "*://www.reddit.com/*",
    "*://old.reddit.com/*"
  ]
}