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
公式URL 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
Eメール [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": [
        ""
    ]
}