E-ink Viewable

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

E-ink Viewable क्या है?

E-ink Viewable iSmartCoding द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में E-ink Viewable एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
    ]
}