Modify DS CDN
Allow the ability to change the CDN location on the fly.
Qu'est-ce que Modify DS CDN ?
Modify DS CDN est une extension Chrome développée par Kevin Smith, et sa fonction principale est "Allow the ability to change the CDN location on the fly.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Modify DS CDN
Téléchargez les fichiers d'extension Modify DS CDN au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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..
Informations de Base sur l'Extension
Nom | Modify DS CDN |
ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
URL Officiel | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Description | Allow the ability to change the CDN location on the fly. |
Taille du Fichier | 20.76 KB |
Nombre d'Installations | 79 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2021-09-26 |
Date de Publication | 2021-01-28 |
Développeur | Kevin Smith |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |