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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้านโยบายความเป็นส่วนตัว | 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" } } |