Modify DS CDN

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

Modify DS CDN là gì?

Modify DS CDN là một tiện ích mở rộng Chrome được phát triển bởi Kevin Smith, và tính năng chính của nó là "Allow the ability to change the CDN location on the fly.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Modify DS CDN

Tải xuống các tệp mở rộng Modify DS CDN dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Modify DS CDN Modify DS CDN
ID bgfifjagmbddbdkkfpdcnkhpbhbiocnm
URL Chính Thức https://chromewebstore.google.com/detail/modify-ds-cdn/bgfifjagmbddbdkkfpdcnkhpbhbiocnm
Mô tả Allow the ability to change the CDN location on the fly.
Kích Thước Tệp 20.76 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2021-09-26
Ngày Phát Hành 2021-01-28
Nhà Phát Triển Kevin Smith
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}