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 с друзьями, чтобы легко установить расширения 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
Электронная почта [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": [
        ""
    ]
}