DarkPDF

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

What is DarkPDF?

DarkPDF is a Chrome extension developed by shilopron, and its main feature is "Adds a simple dark mode functionality for PDF files in Google Chrome".

Extension Screenshots

screenshot
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

                        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                    

Extension Basic Information

Name DarkPDF DarkPDF
ID cfemcmeknmapecneeeaajnbhhgfgkfhp
Official URL https://chromewebstore.google.com/detail/darkpdf/cfemcmeknmapecneeeaajnbhhgfgkfhp
Description Adds a simple dark mode functionality for PDF files in Google Chrome
File Size 85.08 KB
Installation Count 34,652
Current Version 2.4.1
Last Updated 2023-09-01
Publish Date 2021-06-09
Rating 3.92/5 Total 85 Ratings
Developer shilopron
Email [email protected]
Payment Type free
Supported Languages 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"
            }
        }
    }
}