REMIX DJ

Developer tools for the Remix framework

什麼是REMIX DJ?

REMIX DJ是由remixdj.dev開發的Chrome擴展程式,該擴展的主要功能是“Developer tools for the Remix framework”。

擴展截圖

screenshot

下載REMIX DJ擴展crx文件

下載REMIX DJ擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 REMIX DJ REMIX DJ
ID ifjgigpnonjhdejjllpmdmelofjbokgl
官方網址 https://chromewebstore.google.com/detail/remix-dj/ifjgigpnonjhdejjllpmdmelofjbokgl
簡介 Developer tools for the Remix framework
檔案大小 1.22 MB
安裝次數 213
目前版本 0.0.1
更新時間 2023-04-24
上架時間 2023-04-24
評分 5.00/5 共 6 次評分
開發者 remixdj.dev
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://www.freeprivacypolicy.com/live/afa19a84-e8b0-4bb4-b968-6a564afbc9cc
支援的語言 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": [
        ""
    ]
}