REMIX DJ

Developer tools for the Remix framework

Co to jest REMIX DJ?

REMIX DJ to rozszerzenie Chrome opracowane przez remixdj.dev, a jego główną funkcją jest „Developer tools for the Remix framework”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia REMIX DJ

Pobierz pliki rozszerzeń REMIX DJ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa REMIX DJ REMIX DJ
ID ifjgigpnonjhdejjllpmdmelofjbokgl
Oficjalny URL https://chromewebstore.google.com/detail/remix-dj/ifjgigpnonjhdejjllpmdmelofjbokgl
Opis Developer tools for the Remix framework
Rozmiar pliku 1.22 MB
Liczba instalacji 213
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2023-04-24
Data Publikacji 2023-04-24
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper remixdj.dev
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.freeprivacypolicy.com/live/afa19a84-e8b0-4bb4-b968-6a564afbc9cc
Obsługiwane Języki 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": [
        ""
    ]
}