Overleaf Dark Mode
hacky implementation of a dark mode for Overleaf
Overleaf Dark Modeとは何ですか?
Overleaf Dark ModeはJens Breitungによって開発されたChromeの拡張機能で、その主な機能は「hacky implementation of a dark mode for Overleaf」です。
拡張機能のスクリーンショット
Overleaf Dark Mode拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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"
}
} | |