Modify DS CDN

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

Vad är Modify DS CDN?

Modify DS CDN är en Chrome-tillägg utvecklad av Kevin Smith, och dess huvudfunktion är "Allow the ability to change the CDN location on the fly.".

Tilläggsskärmbilder

screenshot

Ladda ner Modify DS CDN-förlängningens CRX-fil

Ladda ner Modify DS CDN-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Modify DS CDN Modify DS CDN
ID bgfifjagmbddbdkkfpdcnkhpbhbiocnm
Officiell webbadress https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm
Beskrivning Allow the ability to change the CDN location on the fly.
Filstorlek 20.76 KB
Antal Installationer 79
Aktuell Version 0.0.5
Senast Uppdaterad 2021-09-26
Publiceringsdatum 2021-01-28
Utvecklare Kevin Smith
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}