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 |
| Eメール | [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"
]
} | |