Learn Russian
An extension for Learn Russian Audio Player
Co to jest Learn Russian?
Learn Russian to rozszerzenie Chrome opracowane przez vuevuevueOsas, a jego główną funkcją jest „An extension for Learn Russian Audio Player”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Learn Russian
Pobierz pliki rozszerzeń Learn Russian w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | elocieaeidgffghnmhmhcpeihphmimha |
| Oficjalny URL | https://chromewebstore.google.com/detail/learn-russian/elocieaeidgffghnmhmhcpeihphmimha |
| Opis | An extension for Learn Russian Audio Player |
| Rozmiar pliku | 22.88 KB |
| Liczba instalacji | 1,528 |
| Aktualna Wersja | 1.6 |
| Ostatnia Aktualizacja | 2022-07-19 |
| Data Publikacji | 2019-11-07 |
| Ocena | 4.40/5 Łącznie 20 Oceny |
| Deweloper | vuevuevueOsas |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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
} | |