Modify DS CDN
Allow the ability to change the CDN location on the fly.
Hvad er Modify DS CDN?
Modify DS CDN er en Chrome-udvidelse udviklet af Kevin Smith, og dens hovedfunktion er "Allow the ability to change the CDN location on the fly.".
Udvidelsesskærmbilleder
Download Modify DS CDN-udvidelses-CRX-fil
Download Modify DS CDN-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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..
Grundlæggende oplysninger om udvidelsen
Navn | Modify DS CDN |
ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Officiel URL | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Beskrivelse | Allow the ability to change the CDN location on the fly. |
Filstørrelse | 20.76 KB |
Antal Installationer | 79 |
Nuværende Version | 0.0.5 |
Senest Opdateret | 2021-09-26 |
Udgivelsesdato | 2021-01-28 |
Udvikler | Kevin Smith |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |