Force English Content

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

Qu'est-ce que Force English Content ?

Force English Content est une extension Chrome développée par mdesantis, et sa fonction principale est "Forces localised web pages with poor or outdated translations to redirect to the original English content.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Force English Content

Téléchargez les fichiers d'extension Force English Content au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Force English Content Force English Content
ID kglfhodlninopcgjohfeephcddibbome
URL Officiel https://chromewebstore.google.com/detail/force-english-content/kglfhodlninopcgjohfeephcddibbome
Description Forces localised web pages with poor or outdated translations to redirect to the original English content.
Taille du Fichier 54.18 KB
Nombre d'Installations 80
Version Actuelle 4.0.1
Dernière Mise à Jour 2024-03-01
Date de Publication 2022-01-11
Évaluation 5.00/5 Total 2 Évaluations
Développeur mdesantis
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mdesantis/force-english-content
Langues Prises en Charge 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"
    }
}