High Contrast Epoch Times

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

O que é High Contrast Epoch Times?

High Contrast Epoch Times é uma extensão do Chrome desenvolvida por Oakes Software, e sua principal característica é "Injects CSS and JS to Epoch Times to make their website high contrast".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão High Contrast Epoch Times

Baixe arquivos de extensão High Contrast Epoch Times no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome High Contrast Epoch Times High Contrast Epoch Times
ID goncadbopkgihpgbeinbmpjlcnglgfkd
URL Oficial https://chrome.google.com/webstore/detail/high-contrast-epoch-times/goncadbopkgihpgbeinbmpjlcnglgfkd
Descrição Injects CSS and JS to Epoch Times to make their website high contrast
Tamanho do Arquivo 51.93 KB
Contagem de Instalações 20
Versão Atual 1.1.0
Última Atualização 2019-04-23
Data de Publicação 2019-04-23
Desenvolvedor Oakes Software
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/NotWoods/high-contrast-epoch-times
URL da Página de Ajuda https://github.com/NotWoods/high-contrast-epoch-times/issues
Idiomas Suportados 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"
            ]
        }
    ]
}