reddit-adblock
An extenstion that blocks ads on reddit!
Was ist reddit-adblock?
reddit-adblock ist eine Chrome-Erweiterung, die von Venkat Naidu entwickelt wurde, und ihr Hauptmerkmal ist "An extenstion that blocks ads on reddit!".
Erweiterungsscreenshots
reddit-adblock-Erweiterungs-CRX-Datei herunterladen
Laden Sie reddit-adblock-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Just hides all the promotions you see while scrolling reddit.
It just hides them. That's all. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mhgkomjopimfbhhiigdkielolbniipdp |
| Offizielle URL | https://chromewebstore.google.com/detail/reddit-adblock/mhgkomjopimfbhhiigdkielolbniipdp |
| Beschreibung | An extenstion that blocks ads on reddit! |
| Dateigröße | 1.04 MB |
| Installationsanzahl | 47 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2022-05-24 |
| Veröffentlichungsdatum | 2022-05-23 |
| Entwickler | Venkat Naidu |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |