DarkPDF

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

DarkPDF란 무엇입니까?

DarkPDF은(는) shilopron에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a simple dark mode functionality for PDF files in Google Chrome"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

DarkPDF 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            }
        }
    }
}