DarkPDF
Adds a dark mode to the standard Chrome PDF-Viewer
什么是DarkPDF?
DarkPDF是由Mano176开发的Chrome扩展程序,该扩展的主要功能是“Adds a dark mode to the standard Chrome PDF-Viewer”。
扩展截图
下载DarkPDF扩展crx文件
下载DarkPDF扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The dark mode can be turned on and off for each PDF individually 扩展基本信息
| 名称 | |
| ID | jhlfcnmbhnelhkfoicmfkdhbhaonadoh |
| 官方URL | https://chromewebstore.google.com/detail/darkpdf/jhlfcnmbhnelhkfoicmfkdhbhaonadoh |
| 简介 | Adds a dark mode to the standard Chrome PDF-Viewer |
| 文件大小 | 14.38 KB |
| 安装次数 | 300 |
| 当前版本 | 1.1 |
| 更新时间 | 2022-11-05 |
| 上架时间 | 2022-11-01 |
| 评分 | 4.88/5 共8次评分 |
| 开发者 | Mano176 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "DarkPDF",
"version": "1.1",
"description": "Adds a dark mode to the standard Chrome PDF-Viewer",
"manifest_version": 3,
"permissions": [
"storage"
],
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*.pdf",
"file:\/\/*.pdf"
],
"js": [
"script.js"
],
"css": [
"style.css"
]
}
]
} | |