Viaplay Subtitles

Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.

Vad är Viaplay Subtitles?

Viaplay Subtitles är en Chrome-tillägg utvecklad av Daniel, och dess huvudfunktion är "Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.".

Tilläggsskärmbilder

screenshot

Ladda ner Viaplay Subtitles-förlängningens CRX-fil

Ladda ner Viaplay Subtitles-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Viaplay Subtitles Viaplay Subtitles
ID igolleadgmkcpideghiegkgfnfbodjll
Officiell webbadress https://chromewebstore.google.com/detail/viaplay-subtitles/igolleadgmkcpideghiegkgfnfbodjll
Beskrivning Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.
Filstorlek 2.58 MB
Antal Installationer 1,292
Aktuell Version 1.3.3
Senast Uppdaterad 2019-12-06
Publiceringsdatum 2019-12-06
Betyg 4.17/5 Totalt 6 Betyg
Utvecklare Daniel
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}