Modify DS CDN
Allow the ability to change the CDN location on the fly.
Co to jest Modify DS CDN?
Modify DS CDN to rozszerzenie Chrome opracowane przez Kevin Smith, a jego główną funkcją jest „Allow the ability to change the CDN location on the fly.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Modify DS CDN
Pobierz pliki rozszerzeń Modify DS CDN w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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..
Podstawowe informacje o rozszerzeniu
Nazwa | Modify DS CDN |
ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Oficjalny URL | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Opis | Allow the ability to change the CDN location on the fly. |
Rozmiar pliku | 20.76 KB |
Liczba instalacji | 79 |
Aktualna Wersja | 0.0.5 |
Ostatnia Aktualizacja | 2021-09-26 |
Data Publikacji | 2021-01-28 |
Deweloper | Kevin Smith |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |