Modify DS CDN
Allow the ability to change the CDN location on the fly.
Was ist Modify DS CDN?
Modify DS CDN ist eine Chrome-Erweiterung, die von Kevin Smith entwickelt wurde, und ihr Hauptmerkmal ist "Allow the ability to change the CDN location on the fly.".
Erweiterungsscreenshots
Modify DS CDN-Erweiterungs-CRX-Datei herunterladen
Laden Sie Modify DS CDN-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
| Offizielle URL | https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm |
| Beschreibung | Allow the ability to change the CDN location on the fly. |
| Dateigröße | 20.76 KB |
| Installationsanzahl | 79 |
| Aktuelle Version | 0.0.5 |
| Letztes Update | 2021-09-26 |
| Veröffentlichungsdatum | 2021-01-28 |
| Entwickler | Kevin Smith |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |