Duolingo Annoyance Blocker
Remove annoying stuff from Duolingo such as pop-up ads, mid-lesson motivation cards and 'let's review missed exercises' card
Что такое Duolingo Annoyance Blocker?
Duolingo Annoyance Blocker - это расширение Chrome, разработанное Harli Kodasma, и его основная функция - "Remove annoying stuff from Duolingo such as pop-up ads, mid-lesson motivation cards and 'let's review missed exercises' card".
Снимки экрана расширения
Скачать файл CRX расширения Duolingo Annoyance Blocker
Скачайте файлы расширений Duolingo Annoyance Blocker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | gcdpjnmeepdndbnjionjfhmhhpealbjp |
| Официальный URL | https://chromewebstore.google.com/detail/duolingo-annoyance-blocke/gcdpjnmeepdndbnjionjfhmhhpealbjp |
| Описание | Remove annoying stuff from Duolingo such as pop-up ads, mid-lesson motivation cards and 'let's review missed exercises' card |
| Размер файла | 25.66 KB |
| Количество установок | 49 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2023-07-11 |
| Дата публикации | 2023-07-10 |
| Разработчик | Harli Kodasma |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
}
} | |