DarkPDF

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

Apa itu DarkPDF?

DarkPDF adalah ekstensi Chrome yang dikembangkan oleh shilopron, dan fitur utamanya adalah "Adds a simple dark mode functionality for PDF files in Google Chrome".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi DarkPDF

Unduh file ekstensi DarkPDF dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama DarkPDF DarkPDF
ID cfemcmeknmapecneeeaajnbhhgfgkfhp
URL Resmi https://chromewebstore.google.com/detail/darkpdf/cfemcmeknmapecneeeaajnbhhgfgkfhp
Deskripsi Adds a simple dark mode functionality for PDF files in Google Chrome
Ukuran File 85.08 KB
Jumlah Instalasi 34,652
Versi Saat Ini 2.4.1
Terakhir Diperbarui 2023-09-01
Tanggal Publikasi 2021-06-09
Penilaian 3.92/5 Total 85 Penilaian
Pengembang shilopron
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            }
        }
    }
}