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
公式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
Eメール [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"
            ]
        }
    ]
}