DarkPDF

Adds a simple dark mode functionality for PDF files in Google Chrome

什么是DarkPDF?

DarkPDF是由shilopron开发的Chrome扩展程序,该扩展的主要功能是“Adds a simple dark mode functionality for PDF files in Google Chrome”。

扩展截图

screenshot
screenshot

下载DarkPDF扩展crx文件

下载DarkPDF扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This simple extension adds a dark mode functionality for native PDF viewer on Google Chrome. Save yourself from eye strains & migraines and enhance your reading experience today by using this extension.

Features:

- Improved user interface with instructions
- Automatic setting that turns on dark mode by itself
- Keyboard shortcut/Click for toggling
- 3 options for choosing intensity of dark mode                    

扩展基本信息

名称 DarkPDF DarkPDF
ID cfemcmeknmapecneeeaajnbhhgfgkfhp
官方URL https://chromewebstore.google.com/detail/darkpdf/cfemcmeknmapecneeeaajnbhhgfgkfhp
简介 Adds a simple dark mode functionality for PDF files in Google Chrome
文件大小 85.08 KB
安装次数 34,652
当前版本 2.4.1
更新时间 2023-09-01
上架时间 2021-06-09
评分 3.92/5 共85次评分
开发者 shilopron
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DarkPDF",
    "description": "Adds a simple dark mode functionality for PDF files in Google Chrome",
    "version": "2.4.1",
    "icons": {
        "128": "\/icons\/document.png"
    },
    "action": {
        "default_icon": "\/icons\/document.png",
        "default_popup": "\/popup.html"
    },
    "background": {
        "service_worker": "\/scripts\/background.js"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/scripts\/content.js"
            ]
        }
    ],
    "commands": {
        "run-dark-mode": {
            "suggested_key": {
                "default": "Ctrl+Shift+9",
                "mac": "Command+Shift+9"
            },
            "description": "Apply dark mode to the current page"
        },
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        }
    }
}