Force English Content

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

Was ist Force English Content?

Force English Content ist eine Chrome-Erweiterung, die von mdesantis entwickelt wurde, und ihr Hauptmerkmal ist "Forces localised web pages with poor or outdated translations to redirect to the original English content.".

Erweiterungsscreenshots

Force English Content-Erweiterungs-CRX-Datei herunterladen

Laden Sie Force English Content-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Force English Content Force English Content
ID kglfhodlninopcgjohfeephcddibbome
Offizielle URL https://chromewebstore.google.com/detail/force-english-content/kglfhodlninopcgjohfeephcddibbome
Beschreibung Forces localised web pages with poor or outdated translations to redirect to the original English content.
Dateigröße 54.18 KB
Installationsanzahl 80
Aktuelle Version 4.0.1
Letztes Update 2024-03-01
Veröffentlichungsdatum 2022-01-11
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler mdesantis
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/mdesantis/force-english-content
Unterstützte Sprachen 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"
    }
}