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