REMIX DJ

Developer tools for the Remix framework

ما هو REMIX DJ؟

REMIX DJ هو إضافة Chrome تم تطويرها بواسطة remixdj.dev، والميزة الرئيسية لها هي "Developer tools for the Remix framework".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة REMIX DJ

قم بتنزيل ملفات الامتداد REMIX DJ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية 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": [
        ""
    ]
}