Duolingo Appearance
Change the appearance on Duolingo to get the look you want.
Wat is Duolingo Appearance?
Duolingo Appearance is een Chrome-extensie ontwikkeld door JonathanDalgaard, en de belangrijkste functie is "Change the appearance on Duolingo to get the look you want.".
Extensie Screenshots
Download het CRX-bestand van de extensie Duolingo Appearance
Download Duolingo Appearance-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | oifnhalickiahlaoacabfafjaibhhimo |
| Officiële URL | https://chromewebstore.google.com/detail/duolingo-appearance/oifnhalickiahlaoacabfafjaibhhimo |
| Beschrijving | Change the appearance on Duolingo to get the look you want. |
| Bestandsgrootte | 31.13 KB |
| Aantal Installaties | 1,000 |
| Huidige Versie | 1.7 |
| Laatst Bijgewerkt | 2020-03-31 |
| Publicatiedatum | 2020-03-31 |
| Beoordeling | 4.57/5 Totaal 7 Beoordelingen |
| Ontwikkelaar | JonathanDalgaard |
| [email protected] | |
| Betalingswijze | free |
| Help Pagina-URL | https://github.com/duolingo-appearance/duolingo-appearance |
| Ondersteunde Talen | 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
} | |