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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daniel และคุณลักษณะหลักของมันคือ "Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Viaplay Subtitles

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
อีเมล [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"
    ]
}