reddit-adblock

An extenstion that blocks ads on reddit!

What is reddit-adblock?

reddit-adblock is a Chrome extension developed by Venkat Naidu, and its main feature is "An extenstion that blocks ads on reddit!".

Extension Screenshots

screenshot
screenshot
screenshot

Download reddit-adblock Extension CRX File

Download reddit-adblock extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Just hides all the promotions you see while scrolling reddit.
It just hides them. That's all.                    

Extension Basic Information

Name reddit-adblock reddit-adblock
ID mhgkomjopimfbhhiigdkielolbniipdp
Official URL https://chromewebstore.google.com/detail/reddit-adblock/mhgkomjopimfbhhiigdkielolbniipdp
Description An extenstion that blocks ads on reddit!
File Size 1.04 MB
Installation Count 47
Current Version 1.0
Last Updated 2022-05-24
Publish Date 2022-05-23
Developer Venkat Naidu
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "reddit-adblock",
    "description": "An extenstion that blocks ads on reddit!",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}