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.”。

擴展截圖

screenshot

下載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 Viaplay Subtitles
ID igolleadgmkcpideghiegkgfnfbodjll
官方網址 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
電子郵箱 [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"
    ]
}