Modify DS CDN

Allow the ability to change the CDN location on the fly.

Modify DS CDN क्या है?

Modify DS CDN Kevin Smith द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow the ability to change the CDN location on the fly."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Modify DS CDN एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This chrome extension allows the user to change the CDN URL for the deployed bundle, thereby allowing a developer to host their own bundles in order to test/debug changes before merging them in..                    

एक्सटेंशन की मूल जानकारी

नाम Modify DS CDN Modify DS CDN
ID bgfifjagmbddbdkkfpdcnkhpbhbiocnm
आधिकारिक URL https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm
विवरण Allow the ability to change the CDN location on the fly.
फ़ाइल का आकार 20.76 KB
स्थापना संख्या 79
वर्तमान संस्करण 0.0.5
अंतिम अपडेट 2021-09-26
प्रकाशन तिथि 2021-01-28
डेवलपर Kevin Smith
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Modify DS CDN",
    "version": "0.0.5",
    "description": "Allow the ability to change the CDN location on the fly.",
    "author": "[email protected]",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_popup": "popup.html",
        "default_title": "Modify DS CDN"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.com\/crmUI\/digital-sales\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}