DarkPDF

Adds a dark mode to the standard Chrome PDF-Viewer

What is DarkPDF?

DarkPDF is a Chrome extension developed by Mano176, and its main feature is "Adds a dark mode to the standard Chrome PDF-Viewer".

Extension Screenshots

screenshot

Download DarkPDF Extension CRX File

Download DarkPDF extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name DarkPDF DarkPDF
ID jhlfcnmbhnelhkfoicmfkdhbhaonadoh
Official URL https://chromewebstore.google.com/detail/darkpdf/jhlfcnmbhnelhkfoicmfkdhbhaonadoh
Description Adds a dark mode to the standard Chrome PDF-Viewer
File Size 14.38 KB
Installation Count 300
Current Version 1.1
Last Updated 2022-11-05
Publish Date 2022-11-01
Rating 4.88/5 Total 8 Ratings
Developer Mano176
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}