Learn Russian
An extension for Learn Russian Audio Player
什么是Learn Russian?
Learn Russian是由vuevuevueOsas开发的Chrome扩展程序,该扩展的主要功能是“An extension for Learn Russian Audio Player”。
扩展截图
下载Learn Russian扩展crx文件
下载Learn Russian扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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! 扩展基本信息
| 名称 | |
| ID | elocieaeidgffghnmhmhcpeihphmimha |
| 官方URL | https://chromewebstore.google.com/detail/learn-russian/elocieaeidgffghnmhmhcpeihphmimha |
| 简介 | An extension for Learn Russian Audio Player |
| 文件大小 | 22.88 KB |
| 安装次数 | 1,528 |
| 当前版本 | 1.6 |
| 更新时间 | 2022-07-19 |
| 上架时间 | 2019-11-07 |
| 评分 | 4.40/5 共20次评分 |
| 开发者 | vuevuevueOsas |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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
} | |