Modify DS CDN

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

Τι είναι το Modify DS CDN;

Το Modify DS CDN είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kevin Smith, και η κύρια λειτουργία του είναι "Allow the ability to change the CDN location on the fly.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Modify DS CDN

Λήψη αρχείων επέκτασης Modify DS CDN σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
            ]
        }
    ]
}