Duolingo Appearance
Change the appearance on Duolingo to get the look you want.
Was ist Duolingo Appearance?
Duolingo Appearance ist eine Chrome-Erweiterung, die von JonathanDalgaard entwickelt wurde, und ihr Hauptmerkmal ist "Change the appearance on Duolingo to get the look you want.".
Erweiterungsscreenshots
Duolingo Appearance-Erweiterungs-CRX-Datei herunterladen
Laden Sie Duolingo Appearance-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
This extension allows you to change the appearance on Duolingo's sites.
Current features:
Change background colors.
Change font family.
Change font color.
Colors automatically apply on page load. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | oifnhalickiahlaoacabfafjaibhhimo |
| Offizielle URL | https://chromewebstore.google.com/detail/duolingo-appearance/oifnhalickiahlaoacabfafjaibhhimo |
| Beschreibung | Change the appearance on Duolingo to get the look you want. |
| Dateigröße | 31.13 KB |
| Installationsanzahl | 1,000 |
| Aktuelle Version | 1.7 |
| Letztes Update | 2020-03-31 |
| Veröffentlichungsdatum | 2020-03-31 |
| Bewertung | 4.57/5 Insgesamt 7 Bewertungen |
| Entwickler | JonathanDalgaard |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/duolingo-appearance/duolingo-appearance |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Duolingo Appearance",
"version": "1.7",
"version_name": "1.7",
"description": "Change the appearance on Duolingo to get the look you want.",
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.duolingo.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/duolingo-symbol-icon16.png",
"32": "images\/duolingo-symbol-icon32.png",
"48": "images\/duolingo-symbol-icon48.png",
"128": "images\/duolingo-symbol-icon128.png"
}
},
"icons": {
"16": "images\/duolingo-symbol-icon16.png",
"32": "images\/duolingo-symbol-icon32.png",
"48": "images\/duolingo-symbol-icon48.png",
"128": "images\/duolingo-symbol-icon128.png"
},
"manifest_version": 2
} | |