Modify DS CDN
Allow the ability to change the CDN location on the fly.
¿Qué es Modify DS CDN?
Modify DS CDN es una extensión de Chrome desarrollada por Kevin Smith, y su función principal es "Allow the ability to change the CDN location on the fly.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Modify DS CDN
Descarga archivos de extensión Modify DS CDN en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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..
Información Básica de la Extensión
Nombre | Modify DS CDN |
ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
URL Oficial | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Descripción | Allow the ability to change the CDN location on the fly. |
Tamaño del Archivo | 20.76 KB |
Cantidad de Instalaciones | 79 |
Versión Actual | 0.0.5 |
Última Actualización | 2021-09-26 |
Fecha de Publicación | 2021-01-28 |
Desarrollador | Kevin Smith |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |