MS KB English Only

Redirects from automatically translated page of Microsoft/Mozilla Knowledge Base to original EN-US text

MS KB English Onlyคืออะไร?

MS KB English Only เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DmitriyH และคุณลักษณะหลักของมันคือ "Redirects from automatically translated page of Microsoft/Mozilla Knowledge Base to original EN-US text"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MS KB English Only

ดาวน์โหลดไฟล์ส่วนขยาย MS KB English Only ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Are you brassed off auto-translated russian pages in Microsoft & Mozilla Support Knownledge Base?
Do you want to see original english text only?
This tiny extension is for you.
When you try to open something like 'support.microsoft.com/kb/path' or "developer.mozilla.org", extension redirects your to the corresponding page with "en-us" locale.
The example of extension usage:
1) search for "MS VS 2015 C++ support"
2) suggested result is "https://msdn.microsoft.com/ru-ru/library/60k1461a.aspx"
3) click on the suggested result
4) the extention automatically redirects to https://msdn.microsoft.com/en-us/library/60k1461a.aspx
You can always click extension button on the top to return to original page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ MS KB English Only MS KB English Only
ID ljeofdpgngelfehhpcdgdabkipnjmnpb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ms-kb-english-only/ljeofdpgngelfehhpcdgdabkipnjmnpb
คำอธิบาย Redirects from automatically translated page of Microsoft/Mozilla Knowledge Base to original EN-US text
ขนาดไฟล์ 14.4 KB
จำนวนการติดตั้ง 101
เวอร์ชันปัจจุบัน 1.2.0.5
อัปเดตครั้งล่าสุด 2018-02-14
วันที่เผยแพร่ 2018-02-14
คะแนน 4.60/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา DmitriyH
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MS KB English Only",
    "short_name": "MS KB ENG",
    "description": "Redirects from automatically translated page of Microsoft\/Mozilla Knowledge Base to original EN-US text",
    "version": "1.2.0.5",
    "author": "DmitriyH",
    "icons": {
        "128": "images\/ms_kb_icon128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*.microsoft.com\/*",
        "*:\/\/developer.mozilla.org\/*"
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/ms_kb_icon19_enabled.png",
            "38": "images\/ms_kb_icon38_enabled.png"
        },
        "default_title": "MS KB English Only"
    },
    "background": {
        "persistent": true,
        "page": "background\/mskb_backround.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.microsoft.com\/*",
                "*:\/\/developer.mozilla.org\/*"
            ],
            "js": [
                "content_scripts\/mskb_content_script.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}