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은(는) DmitriyH에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects from automatically translated page of Microsoft/Mozilla Knowledge Base to original EN-US text"입니다.
확장 프로그램 스크린샷
MS KB English Only 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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'" } |