Viaplay Subtitles
Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.
Viaplay Subtitles là gì?
Viaplay Subtitles là một tiện ích mở rộng Chrome được phát triển bởi Daniel, và tính năng chính của nó là "Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.".
Ả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 Viaplay Subtitles
Tải xuống các tệp mở rộng Viaplay 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
Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking. This in turn makes the subtitles readable whenever credits are shown in the subtitle area of the media player. When the extension is installed the default color will be set to black with no transparency whatsoever. In order to change the colors, press the Viaplay icon in the right hand corner of your browser.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Viaplay Subtitles |
ID | igolleadgmkcpideghiegkgfnfbodjll |
URL Chính Thức | https://chromewebstore.google.com/detail/viaplay-subtitles/igolleadgmkcpideghiegkgfnfbodjll |
Mô tả | Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking. |
Kích Thước Tệp | 2.58 MB |
Số Lần Cài Đặt | 1,292 |
Phiên Bản Hiện Tại | 1.3.3 |
Cập Nhật Lần Cuối | 2019-12-06 |
Ngày Phát Hành | 2019-12-06 |
Đánh Giá | 4.17/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Daniel |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Viaplay Subtitles", "short_name": "VS", "version": "1.3.3", "description": "Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.", "icons": { "128": "dest\/img\/icon128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "dest\/js\/background.min.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "include_globs": [ "https:\/\/viaplay.*\/*" ], "css": [ "dest\/css\/style.min.css" ], "js": [ "dest\/js\/vanilla-picker.min.js", "dest\/js\/content.min.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "tabs" ] } |