Duolingo Everywhere

The little green bird will follow you anywhere as you browse the web.

Что такое Duolingo Everywhere?

Duolingo Everywhere - это расширение Chrome, разработанное writecode.one, и его основная функция - "The little green bird will follow you anywhere as you browse the web.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Duolingo Everywhere

Скачайте файлы расширений Duolingo Everywhere в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The extension will replace your new tab screen with a new tab screen featuring cute images from Duolingo.

According to you all the way through nooks and crannies, from one website to another, while you work, watch movies, or study, the little green bird still closely follows you to remind you to study.                    

Основная информация о расширении

Название Duolingo Everywhere Duolingo Everywhere
ID mjidnkpfnnkdkpmkfanodmmfgdchkdki
Официальный URL https://chromewebstore.google.com/detail/duolingo-everywhere/mjidnkpfnnkdkpmkfanodmmfgdchkdki
Описание The little green bird will follow you anywhere as you browse the web.
Размер файла 468 KB
Количество установок 120
Текущая Версия 1.0.0.0
Последнее Обновление 2023-12-27
Дата публикации 2023-12-27
Рейтинг 5.00/5 Всего 2 оценок
Разработчик writecode.one
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Duolingo Everywhere",
    "name": "Duolingo Everywhere",
    "description": "The little green bird will follow you anywhere as you browse the web.",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/16x16.png",
            "32": "icons\/32x32.png",
            "48": "icons\/48x48.png",
            "128": "icons\/128x128.png"
        }
    },
    "manifest_version": 3,
    "version": "1.0.0.0",
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "permissions": [
        "topSites"
    ],
    "chrome_url_overrides": {
        "newtab": "pages\/newtab.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/content_scripts\/main.js"
            ],
            "css": [
                "static\/content_css\/main.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "svg\/*",
                "static\/*",
                "pages\/*",
                "gifs\/*",
                "fonts\/*",
                "icons\/*",
                "animations\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';script-src-elem 'self' "
    },
    "background": {
        "service_worker": "service_worker\/background.bundle.js"
    }
}