Overleaf Dark Mode
hacky implementation of a dark mode for Overleaf
Overleaf Dark Modeคืออะไร?
Overleaf Dark Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jens Breitung และคุณลักษณะหลักของมันคือ "hacky implementation of a dark mode for Overleaf"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Overleaf Dark Mode
ดาวน์โหลดไฟล์ส่วนขยาย Overleaf Dark Mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
restyling components of the Overleaf UI since Overleaf does not support a full dark mode experience
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ikljddlmgjbaieelllmogbclikdadhnf |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/overleaf-dark-mode/ikljddlmgjbaieelllmogbclikdadhnf |
คำอธิบาย | hacky implementation of a dark mode for Overleaf |
ขนาดไฟล์ | 12.78 KB |
จำนวนการติดตั้ง | 921 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2021-01-20 |
วันที่เผยแพร่ | 2021-01-20 |
คะแนน | 1.09/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | Jens Breitung |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Overleaf Dark Mode", "version": "0.0.1", "manifest_version": 2, "description": "hacky implementation of a dark mode for Overleaf", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.overleaf.com\/project\/*" ], "css": [ "styles.css" ], "js": [ "overleaf.js" ], "run_at": "document_end" } ], "browser_action": { "default_title": "Overleaf Dark Mode" } } |