DarkPDF

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

DarkPDF là gì?

DarkPDF là một tiện ích mở rộng Chrome được phát triển bởi shilopron, và tính năng chính của nó là "Adds a simple dark mode functionality for PDF files in Google Chrome".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DarkPDF

Tải xuống các tệp mở rộng DarkPDF dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DarkPDF DarkPDF
ID cfemcmeknmapecneeeaajnbhhgfgkfhp
URL Chính Thức https://chromewebstore.google.com/detail/darkpdf/cfemcmeknmapecneeeaajnbhhgfgkfhp
Mô tả Adds a simple dark mode functionality for PDF files in Google Chrome
Kích Thước Tệp 85.08 KB
Số Lần Cài Đặt 34,652
Phiên Bản Hiện Tại 2.4.1
Cập Nhật Lần Cuối 2023-09-01
Ngày Phát Hành 2021-06-09
Đánh Giá 3.92/5 Tổng số 85 Đánh Giá
Nhà Phát Triển shilopron
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}