Overleaf Dark Mode
A dark mode for the online LaTeX editor Overleaf.
什麼是Overleaf Dark Mode?
Overleaf Dark Mode是由Tushar Muralidharan開發的Chrome擴展程式,該擴展的主要功能是“A dark mode for the online LaTeX editor Overleaf.”。
擴展截圖
下載Overleaf Dark Mode擴展crx文件
下載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.
擴展基本資訊
名稱 | |
ID | iepehlcmgnghepgeldbflbpaplenegpf |
官方網址 | 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" ] } |