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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        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": [
                ""
            ]
        }
    ]
}