Taboola Ads Blocker
A simple way to hide Taboola ads
Was ist Taboola Ads Blocker?
Taboola Ads Blocker ist eine Chrome-Erweiterung, die von Smart Browser entwickelt wurde, und ihr Hauptmerkmal ist "A simple way to hide Taboola ads".
Erweiterungsscreenshots
Taboola Ads Blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Taboola Ads Blocker-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
💡 A simple way to hide Taboola ads
💡 This Chrome Extension removes only ads provided by Taboola advertiser (check for example https://abcnews.go.com/ to see it with and without this Chrome extension)
✅ Faster browsing
✅ Focus the content you want
✅ Better performance
✅ Less cookies
Source Code: https://github.com/smart-browser/taboola-ads-blocker Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lhnfbhnaoojjmdiohgapkkbnoaljlcmk |
| Offizielle URL | https://chromewebstore.google.com/detail/taboola-ads-blocker/lhnfbhnaoojjmdiohgapkkbnoaljlcmk |
| Beschreibung | A simple way to hide Taboola ads |
| Dateigröße | 24.91 KB |
| Installationsanzahl | 250 |
| Aktuelle Version | 1.02 |
| Letztes Update | 2023-07-24 |
| Veröffentlichungsdatum | 2023-01-11 |
| Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
| Entwickler | Smart Browser |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Taboola Ads Blocker",
"version": "1.02",
"description": "A simple way to hide Taboola ads",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"css": [
"content.css"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "html\/popup.html"
}
} | |