DarkPDF

Adds a dark mode to the standard Chrome PDF-Viewer

ما هو DarkPDF؟

DarkPDF هو إضافة Chrome تم تطويرها بواسطة Mano176، والميزة الرئيسية لها هي "Adds a dark mode to the standard Chrome PDF-Viewer".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة DarkPDF

قم بتنزيل ملفات الامتداد DarkPDF بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        The dark mode can be turned on and off for each PDF individually                    

معلومات أساسية عن التمديد

الاسم DarkPDF DarkPDF
ID jhlfcnmbhnelhkfoicmfkdhbhaonadoh
عنوان URL الرسمي https://chromewebstore.google.com/detail/darkpdf/jhlfcnmbhnelhkfoicmfkdhbhaonadoh
الوصف Adds a dark mode to the standard Chrome PDF-Viewer
حجم الملف 14.38 KB
عدد التثبيتات 300
النسخة الحالية 1.1
آخر تحديث 2022-11-05
تاريخ النشر 2022-11-01
تقييم 4.88/5 مجموع تقييمات 8
المطور Mano176
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DarkPDF",
    "version": "1.1",
    "description": "Adds a dark mode to the standard Chrome PDF-Viewer",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.pdf",
                "file:\/\/*.pdf"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}