Modify DS CDN
Allow the ability to change the CDN location on the fly.
Co je Modify DS CDN?
Modify DS CDN je rozšíření Chrome vyvinuté Kevin Smith, a jeho hlavní funkcí je „Allow the ability to change the CDN location on the fly.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Modify DS CDN
Stáhněte si soubory rozšíření Modify DS CDN ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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..
Základní Informace o Rozšíření
Název | Modify DS CDN |
ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Oficiální URL | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Popis | Allow the ability to change the CDN location on the fly. |
Velikost souboru | 20.76 KB |
Počet instalací | 79 |
Aktuální Verze | 0.0.5 |
Poslední Aktualizace | 2021-09-26 |
Datum Vydání | 2021-01-28 |
Vývojář | Kevin Smith |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } ] } |