Modify DS CDN

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

Wat is Modify DS CDN?

Modify DS CDN is een Chrome-extensie ontwikkeld door Kevin Smith, en de belangrijkste functie is "Allow the ability to change the CDN location on the fly.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Modify DS CDN

Download Modify DS CDN-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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..                    

Basisinformatie over de Extensie

Naam Modify DS CDN Modify DS CDN
ID bgfifjagmbddbdkkfpdcnkhpbhbiocnm
Officiële URL https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm
Beschrijving Allow the ability to change the CDN location on the fly.
Bestandsgrootte 20.76 KB
Aantal Installaties 79
Huidige Versie 0.0.5
Laatst Bijgewerkt 2021-09-26
Publicatiedatum 2021-01-28
Ontwikkelaar Kevin Smith
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}