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
公式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
Eメール [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"
            ]
        }
    ]
}