Modify DS CDN

Allow the ability to change the CDN location on the fly.

什麼是Modify DS CDN?

Modify DS CDN是由Kevin Smith開發的Chrome擴展程式,該擴展的主要功能是“Allow the ability to change the CDN location on the fly.”。

擴展截圖

screenshot

下載Modify DS CDN擴展crx文件

下載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 Modify DS CDN
ID bgfifjagmbddbdkkfpdcnkhpbhbiocnm
官方網址 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"
            ]
        }
    ]
}