Viaplay Subtitles
Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.
Co to jest Viaplay Subtitles?
Viaplay Subtitles to rozszerzenie Chrome opracowane przez Daniel, a jego główną funkcją jest „Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Viaplay Subtitles
Pobierz pliki rozszerzeń Viaplay Subtitles w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Viaplay Subtitles |
ID | igolleadgmkcpideghiegkgfnfbodjll |
Oficjalny URL | https://chromewebstore.google.com/detail/viaplay-subtitles/igolleadgmkcpideghiegkgfnfbodjll |
Opis | Makes it possible to change the background and text color of Viaplay's subtitles to whatever color of your liking. |
Rozmiar pliku | 2.58 MB |
Liczba instalacji | 1,292 |
Aktualna Wersja | 1.3.3 |
Ostatnia Aktualizacja | 2019-12-06 |
Data Publikacji | 2019-12-06 |
Ocena | 4.17/5 Łącznie 6 Oceny |
Deweloper | Daniel |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |