Product Dark
Turn Product Hunt dark for nighttime hunting.
Product Darkคืออะไร?
Product Dark เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://derekbtw.com และคุณลักษณะหลักของมันคือ "Turn Product Hunt dark for nighttime hunting."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Product Dark
ดาวน์โหลดไฟล์ส่วนขยาย Product Dark ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
New in 3.0.1 - Made it so profile headers are shown - Text color changed to white in profile settings - Other color improvements throughout the site
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Product Dark |
ID | nbppndomekcebmldijnlmlmhidepkmbg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/product-dark/nbppndomekcebmldijnlmlmhidepkmbg |
คำอธิบาย | Turn Product Hunt dark for nighttime hunting. |
ขนาดไฟล์ | 699 KB |
จำนวนการติดตั้ง | 68 |
เวอร์ชันปัจจุบัน | 3.0.1 |
อัปเดตครั้งล่าสุด | 2017-08-21 |
วันที่เผยแพร่ | 2017-08-21 |
คะแนน | 2.50/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://derekbtw.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://derekbtw.com |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Product Dark", "version": "3.0.1", "description": "Turn Product Hunt dark for nighttime hunting.", "manifest_version": 2, "permissions": [ "https:\/\/producthunt.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.producthunt.com\/*" ], "js": [ "product-dark.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "Toggle Dark Theme" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ "product-dark.css" ] } |