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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον em_te, και η κύρια λειτουργία του είναι "Redirects a few JavaScript libraries hosted on Google's CDN (ajax.googleapis.com) to Microsoft's CDN (ajax.aspnetcdn.com)".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Google CDN to Microsoft CDN

Λήψη αρχείων επέκτασης 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
Επίσημο 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": [
        "*:\/\/*\/*"
    ]
}