Modify DS CDN
Allow the ability to change the CDN location on the fly.
O que é Modify DS CDN?
Modify DS CDN é uma extensão do Chrome desenvolvida por Kevin Smith, e sua principal característica é "Allow the ability to change the CDN location on the fly.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Modify DS CDN
Baixe arquivos de extensão Modify DS CDN no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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..
Informações Básicas da Extensão
Nome | Modify DS CDN |
ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
URL Oficial | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Descrição | Allow the ability to change the CDN location on the fly. |
Tamanho do Arquivo | 20.76 KB |
Contagem de Instalações | 79 |
Versão Atual | 0.0.5 |
Última Atualização | 2021-09-26 |
Data de Publicação | 2021-01-28 |
Desenvolvedor | Kevin Smith |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |