HN Dark Mode
Adds a dark theme for Hacker news (news.ycombinator.com).
HN Dark Modeคืออะไร?
HN Dark Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Innovative Computer Software และคุณลักษณะหลักของมันคือ "Adds a dark theme for Hacker news (news.ycombinator.com)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HN Dark Mode
ดาวน์โหลดไฟล์ส่วนขยาย HN Dark Mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Dark Mode can be configured to be always on or to match the operating system's dark/light theme. This extension only runs on the Hacker News site. It will not collect or transmit ANY of your browsing activity.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | HN Dark Mode |
ID | abpjflhoidbeaacggmdjoahiakcledna |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna |
คำอธิบาย | Adds a dark theme for Hacker news (news.ycombinator.com). |
ขนาดไฟล์ | 169 KB |
จำนวนการติดตั้ง | 56 |
เวอร์ชันปัจจุบัน | 1.0.3 |
อัปเดตครั้งล่าสุด | 2022-04-07 |
วันที่เผยแพร่ | 2022-03-04 |
ผู้พัฒนา | Innovative Computer Software |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://icsusa.com/public/hndarkmode.html |
URL หน้าช่วยเหลือ | https://icsusa.com/public/hndarkmode.html |
URL หน้านโยบายความเป็นส่วนตัว | https://www.icsusa.com/public/absoluteprivacy.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "version": "1.0.3", "icons": { "48": "images\/HackerNewsColor-48.png", "96": "images\/HackerNewsColor-96.png", "128": "images\/HackerNewsColor-128.png", "256": "images\/HackerNewsColor-256.png", "512": "images\/HackerNewsColor-512.png" }, "background": { "service_worker": "background.js", "_scripts": [ "background.js" ], "_persistent": false }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "style.css" ], "matches": [ "*:\/\/news.ycombinator.com\/*" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |