Modify DS CDN
Allow the ability to change the CDN location on the fly.
Apa itu Modify DS CDN?
Modify DS CDN adalah ekstensi Chrome yang dikembangkan oleh Kevin Smith, dan fitur utamanya adalah "Allow the ability to change the CDN location on the fly.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Modify DS CDN
Unduh file ekstensi Modify DS CDN dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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..
Informasi Dasar Ekstensi
Nama | Modify DS CDN |
ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
URL Resmi | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
Deskripsi | Allow the ability to change the CDN location on the fly. |
Ukuran File | 20.76 KB |
Jumlah Instalasi | 79 |
Versi Saat Ini | 0.0.5 |
Terakhir Diperbarui | 2021-09-26 |
Tanggal Publikasi | 2021-01-28 |
Pengembang | Kevin Smith |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |