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.".

Снимки экрана расширения

screenshot

Скачать файл 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 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"
            ]
        }
    ]
}