Force English Content

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

Cos'è Force English Content?

Force English Content è un'estensione di Chrome sviluppata da mdesantis, e la sua funzione principale è "Forces localised web pages with poor or outdated translations to redirect to the original English content.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Force English Content

Scarica i file di estensione Force English Content in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Force English Content Force English Content
ID kglfhodlninopcgjohfeephcddibbome
URL Ufficiale https://chromewebstore.google.com/detail/force-english-content/kglfhodlninopcgjohfeephcddibbome
Descrizione Forces localised web pages with poor or outdated translations to redirect to the original English content.
Dimensione del File 54.18 KB
Conteggio Installazioni 80
Versione Corrente 4.0.1
Ultimo Aggiornamento 2024-03-01
Data di Pubblicazione 2022-01-11
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore mdesantis
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mdesantis/force-english-content
Lingue Supportate 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"
    }
}