Force English Content

Forces localised web pages with poor or outdated translations to redirect to the original English content.

O que é Force English Content?

Force English Content é uma extensão do Chrome desenvolvida por mdesantis, e sua principal característica é "Forces localised web pages with poor or outdated translations to redirect to the original English content.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Force English Content

Baixe arquivos de extensão Force English Content 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

                        This extension intercepts requests to docs.microsoft.com, developer.mozilla.org, reactjs.org, developers.facebook.com, checks if the requested URL responds with English content and, if it doesn't, redirects to the corresponding URL containing English content.

The use case is for users using a non-English localised browser but having good written English skills to skip changing website content to English every time they access to websites where non-English content quality is lower compared to English one.                    

Informações Básicas da Extensão

Nome Force English Content Force English Content
ID kglfhodlninopcgjohfeephcddibbome
URL Oficial https://chromewebstore.google.com/detail/force-english-content/kglfhodlninopcgjohfeephcddibbome
Descrição Forces localised web pages with poor or outdated translations to redirect to the original English content.
Tamanho do Arquivo 54.18 KB
Contagem de Instalações 80
Versão Atual 4.0.1
Última Atualização 2024-03-01
Data de Publicação 2022-01-11
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor mdesantis
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mdesantis/force-english-content
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Force English Content",
    "version": "4.0.1",
    "description": "Forces localised web pages with poor or outdated translations to redirect to the original English content.",
    "homepage_url": "https:\/\/github.com\/mdesantis\/force-english-content",
    "author": "Maurizio De Santis",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "permissions": [
        "webRequest",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/docs.microsoft.com\/*",
        "*:\/\/learn.microsoft.com\/*",
        "*:\/\/developer.mozilla.org\/*",
        "*:\/\/*.reactjs.org\/*",
        "*:\/\/developers.facebook.com\/*",
        "*:\/\/www.php.net\/*",
        "*:\/\/docs.python.org\/*"
    ],
    "background": {
        "service_worker": "background.js"
    }
}