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
官方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"
    }
}