E-ink Viewable

Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.

ما هو E-ink Viewable؟

E-ink Viewable هو إضافة Chrome تم تطويرها بواسطة iSmartCoding، والميزة الرئيسية لها هي "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".

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

screenshot

تحميل ملف CRX للإضافة E-ink Viewable

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

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

                        It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you.                    

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

الاسم E-ink Viewable E-ink Viewable
ID lfeckmgmmnioloncabbkcddnnooofdmg
عنوان URL الرسمي https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg
الوصف Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
حجم الملف 122 KB
عدد التثبيتات 346
النسخة الحالية 1.0.5
آخر تحديث 2022-07-14
تاريخ النشر 2022-07-05
تقييم 5.00/5 مجموع تقييمات 5
المطور iSmartCoding
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/ismartcoding/e-ink-viewable
عنوان صفحة المساعدة https://github.com/ismartcoding/e-ink-viewable
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "E-ink Viewable",
    "description": "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.",
    "version": "1.0.5",
    "manifest_version": 3,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_title": "E-ink Viewable",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggle-ink-style": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Toggle ink style"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "css\/base.css"
            ]
        },
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [],
            "css": [
                "css\/github.com.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}