FFS MSDN in English
This will change the localisation of MSDN, azure.microsoft, support.microsoft, and/or learn.microsoft pages to English (en-us).
FFS MSDN in English란 무엇입니까?
FFS MSDN in English은(는) AirLancer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This will change the localisation of MSDN, azure.microsoft, support.microsoft, and/or learn.microsoft pages to English (en-us)."입니다.
확장 프로그램 스크린샷
FFS MSDN in English 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
I got tired of Microsoft's MSDN and docs.microsoft pages in "my language". The automatic translation is garbage and there is no easy way of making MSDN/learn... default to english. That is why I wrote this minimalistic extension to switch any MSDN, support.microsoft, azure.microsoft and/or learn.microsft localisation to en-us. You can easily choose whether you want some or all pages redirected to the english version. Just click the extension icon and toggle the pages on and off (see provided images). The icon is made by Freepik from www.flaticon.com
확장 프로그램 기본 정보
이름 | FFS MSDN in English |
ID | ddaknggefjjgpnlhiejepbiplceedmfl |
공식 URL | https://chromewebstore.google.com/detail/ffs-msdn-in-english/ddaknggefjjgpnlhiejepbiplceedmfl |
설명 | This will change the localisation of MSDN, azure.microsoft, support.microsoft, and/or learn.microsoft pages to English (en-us). |
파일 크기 | 95.69 KB |
설치 횟수 | 2,820 |
현재 버전 | 2.3.0 |
최근 업데이트 | 2022-11-07 |
출시 날짜 | 2019-02-27 |
평점 | 5.00/5 총 50 개의 평점 |
개발자 | AirLancer |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/AirLancer/ffs_msdn_in_english |
도움말 페이지 URL | https://github.com/AirLancer/ffs_msdn_in_english |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FFS MSDN in English", "description": "This will change the localisation of MSDN, azure.microsoft, support.microsoft, and\/or learn.microsoft pages to English (en-us).", "version": "2.3.0", "icons": { "16": "icon_16.png", "24": "icon_24.png", "32": "icon_32.png", "48": "icon_48.png", "64": "icon_64.png", "128": "icon_128.png", "256": "icon_256.png", "512": "icon_512.png" }, "permissions": [ "webRequest", "webRequestBlocking", "storage", "*:\/\/msdn.microsoft.com\/*", "*:\/\/*.msdn.microsoft.com\/*", "*:\/\/support.microsoft.com\/*", "*:\/\/*.support.microsoft.com\/*", "*:\/\/azure.microsoft.com\/*", "*:\/\/*.azure.microsoft.com\/*", "*:\/\/learn.microsoft.com\/*", "*:\/\/*.learn.microsoft.com\/*" ], "background": { "scripts": [ "redirectToEnUs.js" ] }, "browser_action": { "default_title": "Set Active Pages", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |