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”。

擴展截圖

screenshot

下載DarkPDF擴展crx文件

下載DarkPDF擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The dark mode can be turned on and off for each PDF individually                    

擴展基本資訊

名稱 DarkPDF DarkPDF
ID jhlfcnmbhnelhkfoicmfkdhbhaonadoh
官方網址 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"
            ]
        }
    ]
}