REMIX DJ

Developer tools for the Remix framework

REMIX DJ là gì?

REMIX DJ là một tiện ích mở rộng Chrome được phát triển bởi remixdj.dev, và tính năng chính của nó là "Developer tools for the Remix framework".

Ả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 REMIX DJ

Tải xuống các tệp mở rộng REMIX DJ 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

                        Detects when Remix is used on a page and provides options for viewing the structure of a page:

-A tree chart, with connected nodes representing your routes
-A drop-down list, with child components nested under their parents                    

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

Tên REMIX DJ REMIX DJ
ID ifjgigpnonjhdejjllpmdmelofjbokgl
URL Chính Thức https://chromewebstore.google.com/detail/remix-dj/ifjgigpnonjhdejjllpmdmelofjbokgl
Mô tả Developer tools for the Remix framework
Kích Thước Tệp 1.22 MB
Số Lần Cài Đặt 213
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2023-04-24
Ngày Phát Hành 2023-04-24
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển remixdj.dev
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/afa19a84-e8b0-4bb4-b968-6a564afbc9cc
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "REMIX DJ",
    "description": "Developer tools for the Remix framework",
    "version": "0.0.1",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "icons\/cropped.logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/contentscript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "detect_remix.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/logo16.png",
        "48": "icons\/logo48.png",
        "128": "icons\/logo128.png",
        "256": "icons\/logo256.png"
    },
    "devtools_page": "devtools\/devtools.html",
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ]
}