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 là gì?

Google CDN to Microsoft CDN là một tiện ích mở rộng Chrome được phát triển bởi em_te, và tính năng chính của nó là "Redirects a few JavaScript libraries hosted on Google's CDN (ajax.googleapis.com) to Microsoft's CDN (ajax.aspnetcdn.com)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google CDN to Microsoft CDN

Tải xuống các tệp mở rộng Google CDN to Microsoft CDN dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google CDN to Microsoft CDN Google CDN to Microsoft CDN
ID kjjcpieflkeombnodljjegdhbedobldj
URL Chính Thức https://chromewebstore.google.com/detail/google-cdn-to-microsoft-c/kjjcpieflkeombnodljjegdhbedobldj
Mô tả Redirects a few JavaScript libraries hosted on Google's CDN (ajax.googleapis.com) to Microsoft's CDN (ajax.aspnetcdn.com)
Kích Thước Tệp 26.57 KB
Số Lần Cài Đặt 215
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2022-05-07
Ngày Phát Hành 2020-09-19
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển em_te
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://em-te.github.io/privacy
Ngôn Ngữ Được Hỗ Trợ 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": [
        "*:\/\/*\/*"
    ]
}