Learn Russian
An extension for Learn Russian Audio Player
Cos'è Learn Russian?
Learn Russian è un'estensione di Chrome sviluppata da vuevuevueOsas, e la sua funzione principale è "An extension for Learn Russian Audio Player".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Learn Russian
Scarica i file di estensione Learn Russian in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This is an extension for http://learnrussian.rt.com
Learn Russian is a fantastic website, but the project was closed in 2012, and it cannot play audio on Google Chrome, so I build the extension to fix the issue.
Learn Russian is back! Informazioni di Base sull'Estensione
| Nome | |
| ID | elocieaeidgffghnmhmhcpeihphmimha |
| URL Ufficiale | https://chromewebstore.google.com/detail/learn-russian/elocieaeidgffghnmhmhcpeihphmimha |
| Descrizione | An extension for Learn Russian Audio Player |
| Dimensione del File | 22.88 KB |
| Conteggio Installazioni | 1,528 |
| Versione Corrente | 1.6 |
| Ultimo Aggiornamento | 2022-07-19 |
| Data di Pubblicazione | 2019-11-07 |
| Valutazione | 4.40/5 Totale 20 Valutazioni |
| Sviluppatore | vuevuevueOsas |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Learn Russian",
"description": "An extension for Learn Russian Audio Player",
"version": "1.6",
"action": {
"default_title": "Click and go to Learn Russian"
},
"permissions": [],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.learnrussian.rt.com\/*"
],
"js": [
"js\/main.js",
"js\/lessons.js"
]
},
{
"matches": [
"*:\/\/*.learnrussian.rt.com\/phonetics\/*"
],
"js": [
"js\/phonetics.js"
]
},
{
"matches": [
"*:\/\/*.learnrussian.rt.com\/alphabet\/*"
],
"js": [
"js\/alphabet.js"
]
}
],
"icons": {
"16": "images\/logo_16.png",
"32": "images\/logo_32.png",
"48": "images\/logo_48.png",
"128": "images\/logo_128.png"
},
"manifest_version": 3
} | |