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
扩展基本信息
名称 | Google Docs Dark Mode (Darker) |
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 |
电子邮箱 | [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\/*" ] } ] } |