Hotstar Dark Theme
Dark Theme for Hotstar
ما هو Hotstar Dark Theme؟
Hotstar Dark Theme هو إضافة Chrome تم تطويرها بواسطة dutiyesh، والميزة الرئيسية لها هي "Dark Theme for Hotstar".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Hotstar Dark Theme
قم بتنزيل ملفات الامتداد Hotstar Dark Theme بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Dark theme turns the light surfaces of Hotstar website dark, creating an experience ideal for night.
معلومات أساسية عن التمديد
الاسم | Hotstar Dark Theme |
ID | ilfapohajbnogiilnbbejjhfbbgbplel |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/hotstar-dark-theme/ilfapohajbnogiilnbbejjhfbbgbplel |
الوصف | Dark Theme for Hotstar |
حجم الملف | 58.17 KB |
عدد التثبيتات | 203 |
النسخة الحالية | 0.3.0 |
آخر تحديث | 2022-11-29 |
تاريخ النشر | 2019-11-09 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | dutiyesh |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hotstar Dark Theme", "version": "0.3.0", "description": "Dark Theme for Hotstar", "icons": { "128": "media\/icon.png" }, "permissions": [ "storage", "activeTab" ], "action": { "default_title": "Hotstar Dark Theme", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.hotstar.com\/*" ], "run_at": "document_end", "css": [ "content-script.css" ], "js": [ "content-script.js" ] } ], "background": { "service_worker": "background.js" } } |