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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}