MoST Subtitles
Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…
什么是MoST Subtitles?
MoST Subtitles是由Joel Sjögren开发的Chrome扩展程序,该扩展的主要功能是“Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…”。
扩展截图
下载MoST Subtitles扩展crx文件
下载MoST Subtitles扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Unofficial chrome extension for showing more subtitles at viki.com.
The code is largely inspired by chrome-subtitles and subber, but more minimal and targeted toward use at viki.com. It is commented and open-source, too. More most-like.
In early versions, only Korean was supported, but it is now possible to view as many languages as you want! In the options page, simply add more blocks, for example `.most-de { bottom: -100px; height: 100px; }` for German subtitles just below the player.
Visit https://github.com/JoelSjogren/most to fork, contribute, report bugs and request features! 扩展基本信息
| 名称 | |
| ID | kjmhinhfpooeamgbjkcmjfdedlahnkhk |
| 官方URL | https://chromewebstore.google.com/detail/most-subtitles/kjmhinhfpooeamgbjkcmjfdedlahnkhk |
| 简介 | Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,… |
| 文件大小 | 301 KB |
| 安装次数 | 703 |
| 当前版本 | 0.8.6 |
| 更新时间 | 2024-02-05 |
| 上架时间 | 2018-01-27 |
| 评分 | 3.20/5 共5次评分 |
| 开发者 | Joel Sjögren |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/JoelSjogren/most |
| 帮助页面URL | https://github.com/JoelSjogren/most/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "MoST Subtitles",
"version": "0.8.6",
"permissions": [
"storage"
],
"browser_action": {
"default_title": "MoST Subtitles",
"default_icon": "icon16.png"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"manifest_version": 2,
"background": {
"scripts": [
"options_load.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.viki.com\/*",
"http:\/\/www.viki.com\/*",
"https:\/\/subber.viki.com\/*",
"http:\/\/subber.viki.com\/*"
],
"js": [
"zepto.js",
"overlay.js"
],
"run_at": "document_end"
}
],
"options_page": "options.html",
"web_accessible_resources": [
"options_default.css"
]
} | |