Duolingo Everywhere

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

Was ist Duolingo Everywhere?

Duolingo Everywhere ist eine Chrome-Erweiterung, die von writecode.one entwickelt wurde, und ihr Hauptmerkmal ist "The little green bird will follow you anywhere as you browse the web.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Duolingo Everywhere-Erweiterungs-CRX-Datei herunterladen

Laden Sie Duolingo Everywhere-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Duolingo Everywhere Duolingo Everywhere
ID mjidnkpfnnkdkpmkfanodmmfgdchkdki
Offizielle URL https://chromewebstore.google.com/detail/duolingo-everywhere/mjidnkpfnnkdkpmkfanodmmfgdchkdki
Beschreibung The little green bird will follow you anywhere as you browse the web.
Dateigröße 468 KB
Installationsanzahl 120
Aktuelle Version 1.0.0.0
Letztes Update 2023-12-27
Veröffentlichungsdatum 2023-12-27
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler writecode.one
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}