Google Docs Dark Mode (Darker)
Google docs for someone who can't stand the light.
Google Docs Dark Mode (Darker)とは何ですか?
Google Docs Dark Mode (Darker)はPrefersDarkModeによって開発されたChromeの拡張機能で、その主な機能は「Google docs for someone who can't stand the light.」です。
拡張機能のスクリーンショット
Google Docs Dark Mode (Darker)拡張機能のCRXファイルをダウンロード
Google Docs Dark Mode (Darker)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simply applies a overtly dark theme to google docs. Perfect for those who prefer a pitch black dark mode in google docs. Absolutely ZERO user data is collected.
Source code: https://github.com/R-Y-M-R/DocsDarkMode 拡張機能の基本情報
| 名前 | |
| ID | eeckpnpnbjmpknpcmcoiceaidlajhpmh |
| 公式URL | https://chromewebstore.google.com/detail/google-docs-dark-mode-dar/eeckpnpnbjmpknpcmcoiceaidlajhpmh |
| 説明 | Google docs for someone who can't stand the light. |
| ファイルサイズ | 39.38 KB |
| インストール数 | 361 |
| 現在のバージョン | 1 |
| 最終更新日 | 2022-09-07 |
| 公開日 | 2022-09-04 |
| 評価 | 3.00/5 合計 2 レビュー |
| 開発者 | PrefersDarkMode |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Google Docs Dark Mode (Darker)",
"version": "1",
"description": "Google docs for someone who can't stand the light.",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https:\/\/docs.google.com\/document\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"128": "128.png"
},
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"css\/dark_mode_docs.css"
],
"matches": [
"https:\/\/docs.google.com\/*"
]
}
]
} | |