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是由mdesantis開發的Chrome擴展程式,該擴展的主要功能是“Forces localised web pages with poor or outdated translations to redirect to the original English content.”。

擴展截圖

下載Force English Content擴展crx文件

下載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
官方網址 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"
    }
}