Viaplay Subtitles
Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.
Viaplay Subtitlesとは何ですか?
Viaplay SubtitlesはDanielによって開発されたChromeの拡張機能で、その主な機能は「Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.」です。
拡張機能のスクリーンショット
Viaplay Subtitles拡張機能のCRXファイルをダウンロード
Viaplay Subtitles拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Viaplay Subtitles |
ID | igolleadgmkcpideghiegkgfnfbodjll |
公式URL | https://chromewebstore.google.com/detail/viaplay-subtitles/igolleadgmkcpideghiegkgfnfbodjll |
説明 | Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking. |
ファイルサイズ | 2.58 MB |
インストール数 | 1,292 |
現在のバージョン | 1.3.3 |
最終更新日 | 2019-12-06 |
公開日 | 2019-12-06 |
評価 | 4.17/5 合計 6 レビュー |
開発者 | Daniel |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" ] } |