Modify DS CDN
Allow the ability to change the CDN location on the fly.
Modify DS CDNคืออะไร?
Modify DS CDN เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kevin Smith และคุณลักษณะหลักของมันคือ "Allow the ability to change the CDN location on the fly."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Modify DS CDN
ดาวน์โหลดไฟล์ส่วนขยาย Modify DS CDN ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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..
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Modify DS CDN |
ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
คำอธิบาย | Allow the ability to change the CDN location on the fly. |
ขนาดไฟล์ | 20.76 KB |
จำนวนการติดตั้ง | 79 |
เวอร์ชันปัจจุบัน | 0.0.5 |
อัปเดตครั้งล่าสุด | 2021-09-26 |
วันที่เผยแพร่ | 2021-01-28 |
ผู้พัฒนา | Kevin Smith |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } ] } |