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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}