High Contrast Epoch Times

Injects CSS and JS to Epoch Times to make their website high contrast

High Contrast Epoch Times क्या है?

High Contrast Epoch Times Oakes Software द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Injects CSS and JS to Epoch Times to make their website high contrast"।

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

screenshot

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

crx प्रारूप में High Contrast Epoch Times एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Makes the Chinese mobile Epoch Times website better for accessibility.

A Chrome extension to tweak my grandfather's favorite website.
Intended to be used with the mobile version of the site.

Epoch Times' website uses pixel font sizes, and as a result the font sizes
cannot be overridden by the user. Browsers let users change the default font
sizes so that users like my grandfather can read text that would normally be
too small to see. Websites use `em` units for text rather than `px` to obey
these settings and show text relative to the chosen size.

The extension automatically converts pixel `font-size` and `line-height` values
to use `em` units instead. It also uses high contrast text colors (black
background and yellow text) to make it easier to read.                    

एक्सटेंशन की मूल जानकारी

नाम High Contrast Epoch Times High Contrast Epoch Times
ID goncadbopkgihpgbeinbmpjlcnglgfkd
आधिकारिक URL https://chrome.google.com/webstore/detail/high-contrast-epoch-times/goncadbopkgihpgbeinbmpjlcnglgfkd
विवरण Injects CSS and JS to Epoch Times to make their website high contrast
फ़ाइल का आकार 51.93 KB
स्थापना संख्या 20
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2019-04-23
प्रकाशन तिथि 2019-04-23
डेवलपर Oakes Software
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/NotWoods/high-contrast-epoch-times
सहायता पृष्ठ URL https://github.com/NotWoods/high-contrast-epoch-times/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "$schema": "https:\/\/raw.githubusercontent.com\/jasonkarns\/chrome-extension-manifest-schema\/master\/schemas\/json-schema.schema.json",
    "name": "High Contrast Epoch Times",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Injects CSS and JS to Epoch Times to make their website high contrast",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "author": "Tiger Oakes",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.epochtimes.com\/*"
            ],
            "css": [
                "src\/inject\/high-contrast.css"
            ],
            "js": [
                "src\/inject\/px-to-em.js"
            ]
        }
    ]
}