SO Dark Chat +
Provides a new dark theme for stackoverflow chat.
SO Dark Chat +คืออะไร?
SO Dark Chat + เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rlemon และคุณลักษณะหลักของมันคือ "Provides a new dark theme for stackoverflow chat."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SO Dark Chat +
ดาวน์โหลดไฟล์ส่วนขยาย SO Dark Chat + ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an ongoing development effort based on https://github.com/oliversalzburg/se-chat-dark-theme this adds some additional fixes and features (as well as a few modifications) to the existing stackoverflow chat interface. All new features and repository! User colours. Code Highlighting. Webm/Gifv oneboxing. Code Editor. And More!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SO Dark Chat + |
ID | bbkjccfnenmgidehjhaabamobpbaaghh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/so-dark-chat-+/bbkjccfnenmgidehjhaabamobpbaaghh |
คำอธิบาย | Provides a new dark theme for stackoverflow chat. |
ขนาดไฟล์ | 6.61 MB |
จำนวนการติดตั้ง | 80 |
เวอร์ชันปัจจุบัน | 0.1.5 |
อัปเดตครั้งล่าสุด | 2019-03-08 |
วันที่เผยแพร่ | 2019-03-08 |
คะแนน | 4.85/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | rlemon |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/rlemon/se-chat-dark-theme-plus |
URL หน้าช่วยเหลือ | https://github.com/rlemon/se-chat-dark-theme-plus/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SO Dark Chat +", "description": "Provides a new dark theme for stackoverflow chat.", "version": "0.1.5", "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/chat.stackoverflow.com\/*", "*:\/\/chat.stackexchange.com\/*", "*:\/\/chat.meta.stackexchange.com\/*" ], "js": [ "script.js" ], "css": [ "css\/style.css", "CodeMirror\/css\/codemirror.css", "CodeMirror\/css\/monokai.css" ] } ], "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "icons": { "128": "img\/icon_128.png" }, "permissions": [ "storage" ], "web_accessible_resources": [ "js\/*.js", "css\/*.css", "images\/*.svg", "CodeMirror\/*", "CodeMirror\/*\/*" ] } |