Duolingo Annoyance Blocker
Remove annoying stuff from Duolingo such as pop-up ads, mid-lesson motivation cards and 'let's review missed exercises' card
Was ist Duolingo Annoyance Blocker?
Duolingo Annoyance Blocker ist eine Chrome-Erweiterung, die von Harli Kodasma entwickelt wurde, und ihr Hauptmerkmal ist "Remove annoying stuff from Duolingo such as pop-up ads, mid-lesson motivation cards and 'let's review missed exercises' card".
Erweiterungsscreenshots
Duolingo Annoyance Blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Duolingo Annoyance 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
Click on the extension to open the settings menu and configure what annoys you - disable pop-up ads, mid-lesson motivation cards or 'let's review missed exercises' card. Or all of them.
The settings are synced with your Google account. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gcdpjnmeepdndbnjionjfhmhhpealbjp |
| Offizielle URL | https://chromewebstore.google.com/detail/duolingo-annoyance-blocke/gcdpjnmeepdndbnjionjfhmhhpealbjp |
| Beschreibung | Remove annoying stuff from Duolingo such as pop-up ads, mid-lesson motivation cards and 'let's review missed exercises' card |
| Dateigröße | 25.66 KB |
| Installationsanzahl | 49 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2023-07-11 |
| Veröffentlichungsdatum | 2023-07-10 |
| Entwickler | Harli Kodasma |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Duolingo Annoyance Blocker",
"version": "1.0",
"description": "Remove annoying stuff from Duolingo such as pop-up ads, mid-lesson motivation cards and 'let's review missed exercises' card",
"permissions": [
"storage"
],
"action": {
"default_title": "Options for Duolingo Annoyance Blocker",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.duolingo.com\/*"
],
"js": [
"content-script.js"
]
}
],
"icons": {
"128": "128.png"
}
} | |