REMIX DJ

Developer tools for the Remix framework

What is REMIX DJ?

REMIX DJ is a Chrome extension developed by remixdj.dev, and its main feature is "Developer tools for the Remix framework".

Extension Screenshots

screenshot

Download REMIX DJ Extension CRX File

Download REMIX DJ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name REMIX DJ REMIX DJ
ID ifjgigpnonjhdejjllpmdmelofjbokgl
Official URL https://chromewebstore.google.com/detail/remix-dj/ifjgigpnonjhdejjllpmdmelofjbokgl
Description Developer tools for the Remix framework
File Size 1.22 MB
Installation Count 213
Current Version 0.0.1
Last Updated 2023-04-24
Publish Date 2023-04-24
Rating 5.00/5 Total 6 Ratings
Developer remixdj.dev
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.freeprivacypolicy.com/live/afa19a84-e8b0-4bb4-b968-6a564afbc9cc
Supported Languages 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": [
        ""
    ]
}