LocatorJS

LocatorJS Chrome Extension - option-click to code (ReactJS)

Что такое LocatorJS?

LocatorJS - это расширение Chrome, разработанное https://locatorjs.com, и его основная функция - "LocatorJS Chrome Extension - option-click to code (ReactJS)".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения LocatorJS

Скачайте файлы расширений LocatorJS в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Click on any component in the browser to open its code in your IDE.
Supports React, Preact and SolidJS components. 

Select your IDE, and then use option-click or alt-click on any website with supported components.

ReactJS works in most localhost environments out-of-the-box.
Preact, SolidJS and some ReactJS stacks require installation of babel plugin, more info on www.locatorjs.com 

Extension is completely open-source and available on https://github.com/infi-pc/locatorjs                    

Основная информация о расширении

Название LocatorJS LocatorJS
ID npbfdllefekhdplbkdigpncggmojpefi
Официальный URL https://chromewebstore.google.com/detail/locatorjs/npbfdllefekhdplbkdigpncggmojpefi
Описание LocatorJS Chrome Extension - option-click to code (ReactJS)
Размер файла 188 KB
Количество установок 28,491
Текущая Версия 1.3.1
Последнее Обновление 2023-11-20
Дата публикации 2022-05-07
Рейтинг 4.27/5 Всего 49 оценок
Разработчик https://locatorjs.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "LocatorJS Chrome Extension - option-click to code (ReactJS)",
    "version": "1.3.1",
    "manifest_version": 3,
    "name": "LocatorJS",
    "icons": {
        "128": "icon-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "client.bundle.js",
                "hook.bundle.js",
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}