Force English Content

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

Τι είναι το Force English Content;

Το Force English Content είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mdesantis, και η κύρια λειτουργία του είναι "Forces localised web pages with poor or outdated translations to redirect to the original English content.".

Στιγμιότυπα Επέκτασης

Λήψη αρχείου CRX της επέκτασης Force English Content

Λήψη αρχείων επέκτασης Force English Content σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Force English Content Force English Content
ID kglfhodlninopcgjohfeephcddibbome
Επίσημο URL https://chromewebstore.google.com/detail/force-english-content/kglfhodlninopcgjohfeephcddibbome
Περιγραφή Forces localised web pages with poor or outdated translations to redirect to the original English content.
Μέγεθος Αρχείου 54.18 KB
Αριθμός Εγκαταστάσεων 80
Τρέχουσα Έκδοση 4.0.1
Τελευταία Ενημέρωση 2024-03-01
Ημερομηνία Δημοσίευσης 2022-01-11
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής mdesantis
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/mdesantis/force-english-content
Υποστηριζόμενες Γλώσσες 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"
    }
}