NetFlix AdBlock
Netflix adblock extension blocks ads on netflix.com
Was ist NetFlix AdBlock?
NetFlix AdBlock ist eine Chrome-Erweiterung, die von Helpful Extensions entwickelt wurde, und ihr Hauptmerkmal ist "Netflix adblock extension blocks ads on netflix.com".
Erweiterungsscreenshots
NetFlix AdBlock-Erweiterungs-CRX-Datei herunterladen
Laden Sie NetFlix 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
Netflix adblock extension for chrome blocks the ads on netflix.com. Now block ads on Youtube™. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hpidkbbgclindolciegmahgighmjkoae |
| Offizielle URL | https://chromewebstore.google.com/detail/netflix-adblock/hpidkbbgclindolciegmahgighmjkoae |
| Beschreibung | Netflix adblock extension blocks ads on netflix.com |
| Dateigröße | 56.14 KB |
| Installationsanzahl | 1,268 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2023-07-26 |
| Veröffentlichungsdatum | 2022-10-21 |
| Bewertung | 1.80/5 Insgesamt 15 Bewertungen |
| Entwickler | Helpful Extensions |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://sites.google.com/view/smart-picture-in-picture/privacy-policy |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "NetFlix AdBlock",
"description": "Netflix adblock extension blocks ads on netflix.com",
"version": "1.0.0",
"manifest_version": 3,
"icons": {
"16": "images\/icons-16.png",
"128": "images\/icons-128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentscript.js"
]
}
],
"action": {
"default_icon": {
"19": "images\/icons-19.png",
"38": "images\/icons-38.png",
"128": "images\/icons-128.png"
},
"default_title": "NetFlix AdBlock",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"unlimitedStorage",
"declarativeNetRequest",
"tabs",
"notifications",
"gcm"
],
"host_permissions": [
"*:\/\/*\/*"
]
} | |