Google CDN to Microsoft CDN

Redirects a few JavaScript libraries hosted on Google's CDN (ajax.googleapis.com) to Microsoft's CDN (ajax.aspnetcdn.com)

Google CDN to Microsoft CDN란 무엇입니까?

Google CDN to Microsoft CDN은(는) em_te에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects a few JavaScript libraries hosted on Google's CDN (ajax.googleapis.com) to Microsoft's CDN (ajax.aspnetcdn.com)"입니다.

확장 프로그램 스크린샷

screenshot

Google CDN to Microsoft CDN 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Websites which try to load the following JavaScript libraries hosted on Google's CDN (ajax.googleapis.com) will quietly have the request redirected to Microsoft's CDN (ajax.aspnetcdn.com):

1) ajax.googleapis.com/ajax/libs/jquery/1.2.3/jquery.min.js
2) ajax.googleapis.com/ajax/libs/jquerymobile/1.2.3/jquery.mobile.min.js
3) ajax.googleapis.com/ajax/libs/jqueryui/1.2.3/jquery-ui.min.js
4) ajax.googleapis.com/ajax/libs/jqueryui/1.2.3/themes/*/jquery-ui.css
5) ajax.googleapis.com/ajax/libs/hammerjs/1.2.3/hammer.min.js

This should allow websites like Stack Overflow (www.stackoverflow.com) to work as normal should your company's firewall happen to be blocking Google's CDN.

Just one more thing...

This extension uses "declarativeNetRequest" to perform the redirection, instead of using "webRequest". This means you can use this extension with confidence because this extension cannot spy on you. It also means the redirection will consume less memory and will be handled directly by the browser meaning it will run faster than usual.                    

확장 프로그램 기본 정보

이름 Google CDN to Microsoft CDN Google CDN to Microsoft CDN
ID kjjcpieflkeombnodljjegdhbedobldj
공식 URL https://chromewebstore.google.com/detail/google-cdn-to-microsoft-c/kjjcpieflkeombnodljjegdhbedobldj
설명 Redirects a few JavaScript libraries hosted on Google's CDN (ajax.googleapis.com) to Microsoft's CDN (ajax.aspnetcdn.com)
파일 크기 26.57 KB
설치 횟수 215
현재 버전 0.1.2
최근 업데이트 2022-05-07
출시 날짜 2020-09-19
평점 5.00/5 총 2 개의 평점
개발자 em_te
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://em-te.github.io/privacy
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "author": "Terry",
    "version": "0.1.2",
    "description": "__MSG_extDesc__",
    "manifest_version": 3,
    "default_locale": "en",
    "offline_enabled": true,
    "icons": {
        "24": "icon_24.png",
        "48": "icon_48.png",
        "96": "icon_96.png",
        "128": "icon_128.png"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "myrules",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}