Modify DS CDN
Allow the ability to change the CDN location on the fly.
Cos'è Modify DS CDN?
Modify DS CDN è un'estensione di Chrome sviluppata da Kevin Smith, e la sua funzione principale è "Allow the ability to change the CDN location on the fly.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Modify DS CDN
Scarica i file di estensione Modify DS CDN in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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..
Informazioni di Base sull'Estensione
Nome | Modify DS CDN |
ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
URL Ufficiale | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Descrizione | Allow the ability to change the CDN location on the fly. |
Dimensione del File | 20.76 KB |
Conteggio Installazioni | 79 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2021-09-26 |
Data di Pubblicazione | 2021-01-28 |
Sviluppatore | Kevin Smith |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |