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文件

下載Google CDN to Microsoft CDN擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
        "*:\/\/*\/*"
    ]
}