MoST Subtitles
Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…
MoST Subtitles là gì?
MoST Subtitles là một tiện ích mở rộng Chrome được phát triển bởi Joel Sjögren, và tính năng chính của nó là "Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng MoST Subtitles
Tải xuống các tệp mở rộng MoST Subtitles dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MoST Subtitles |
ID | kjmhinhfpooeamgbjkcmjfdedlahnkhk |
URL Chính Thức | https://chromewebstore.google.com/detail/most-subtitles/kjmhinhfpooeamgbjkcmjfdedlahnkhk |
Mô tả | Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,… |
Kích Thước Tệp | 301 KB |
Số Lần Cài Đặt | 703 |
Phiên Bản Hiện Tại | 0.8.6 |
Cập Nhật Lần Cuối | 2024-02-05 |
Ngày Phát Hành | 2018-01-27 |
Đánh Giá | 3.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Joel Sjögren |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/JoelSjogren/most |
URL Trang Trợ Giúp | https://github.com/JoelSjogren/most/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |