DarkPDF

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

DarkPDFคืออะไร?

DarkPDF เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shilopron และคุณลักษณะหลักของมันคือ "Adds a simple dark mode functionality for PDF files in Google Chrome"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DarkPDF

ดาวน์โหลดไฟล์ส่วนขยาย DarkPDF ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DarkPDF DarkPDF
ID cfemcmeknmapecneeeaajnbhhgfgkfhp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/darkpdf/cfemcmeknmapecneeeaajnbhhgfgkfhp
คำอธิบาย Adds a simple dark mode functionality for PDF files in Google Chrome
ขนาดไฟล์ 85.08 KB
จำนวนการติดตั้ง 34,652
เวอร์ชันปัจจุบัน 2.4.1
อัปเดตครั้งล่าสุด 2023-09-01
วันที่เผยแพร่ 2021-06-09
คะแนน 3.92/5 รวมทั้งหมด 85 คะแนน
ผู้พัฒนา shilopron
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
            }
        }
    }
}