LocatorJS

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

LocatorJS란 무엇입니까?

LocatorJS은(는) https://locatorjs.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "LocatorJS Chrome Extension - option-click to code (ReactJS)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

LocatorJS 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": [
                ""
            ]
        }
    ]
}