reddit-adblock

An extenstion that blocks ads on reddit!

Wat is reddit-adblock?

reddit-adblock is een Chrome-extensie ontwikkeld door Venkat Naidu, en de belangrijkste functie is "An extenstion that blocks ads on reddit!".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie reddit-adblock

Download reddit-adblock-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam reddit-adblock reddit-adblock
ID mhgkomjopimfbhhiigdkielolbniipdp
Officiële URL https://chromewebstore.google.com/detail/reddit-adblock/mhgkomjopimfbhhiigdkielolbniipdp
Beschrijving An extenstion that blocks ads on reddit!
Bestandsgrootte 1.04 MB
Aantal Installaties 47
Huidige Versie 1.0
Laatst Bijgewerkt 2022-05-24
Publicatiedatum 2022-05-23
Ontwikkelaar Venkat Naidu
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}