Overleaf Dark Mode

A dark mode for the online LaTeX editor Overleaf.

Overleaf Dark Modeคืออะไร?

Overleaf Dark Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tushar Muralidharan และคุณลักษณะหลักของมันคือ "A dark mode for the online LaTeX editor Overleaf."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Overleaf Dark Mode

ดาวน์โหลดไฟล์ส่วนขยาย Overleaf Dark Mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The extension inverts colours in the editor, PDF viewer, and modals, and adds a dark background to most content panes. It may be toggled by clicking on the icon.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Overleaf Dark Mode Overleaf Dark Mode
ID iepehlcmgnghepgeldbflbpaplenegpf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/iepehlcmgnghepgeldbflbpaplenegpf
คำอธิบาย A dark mode for the online LaTeX editor Overleaf.
ขนาดไฟล์ 13.97 KB
จำนวนการติดตั้ง 5,146
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2022-08-07
วันที่เผยแพร่ 2022-04-15
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Tushar Muralidharan
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Overleaf Dark Mode",
    "description": "A dark mode for the online LaTeX editor Overleaf.",
    "version": "1.4",
    "manifest_version": 3,
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Click to toggle dark mode"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.overleaf.com\/project\/*"
            ],
            "js": [
                "toggle.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}