Taboola Ads Blocker
A simple way to hide Taboola ads
Wat is Taboola Ads Blocker?
Taboola Ads Blocker is een Chrome-extensie ontwikkeld door Smart Browser, en de belangrijkste functie is "A simple way to hide Taboola ads".
Extensie Screenshots
Download het CRX-bestand van de extensie Taboola Ads Blocker
Download Taboola Ads Blocker-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
💡 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 Basisinformatie over de Extensie
| Naam | |
| ID | lhnfbhnaoojjmdiohgapkkbnoaljlcmk |
| Officiële URL | https://chromewebstore.google.com/detail/taboola-ads-blocker/lhnfbhnaoojjmdiohgapkkbnoaljlcmk |
| Beschrijving | A simple way to hide Taboola ads |
| Bestandsgrootte | 24.91 KB |
| Aantal Installaties | 250 |
| Huidige Versie | 1.02 |
| Laatst Bijgewerkt | 2023-07-24 |
| Publicatiedatum | 2023-01-11 |
| Beoordeling | 4.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | Smart Browser |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
} | |