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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Viaplay Subtitles
قم بتنزيل ملفات الامتداد Viaplay Subtitles بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" ] } |