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 |
公式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 |
Eメール | [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" ] } |