LocatorJS

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

Vad är LocatorJS?

LocatorJS är en Chrome-tillägg utvecklad av https://locatorjs.com, och dess huvudfunktion är "LocatorJS Chrome Extension - option-click to code (ReactJS)".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner LocatorJS-förlängningens CRX-fil

Ladda ner LocatorJS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn LocatorJS LocatorJS
ID npbfdllefekhdplbkdigpncggmojpefi
Officiell webbadress https://chromewebstore.google.com/detail/locatorjs/npbfdllefekhdplbkdigpncggmojpefi
Beskrivning LocatorJS Chrome Extension - option-click to code (ReactJS)
Filstorlek 188 KB
Antal Installationer 28,491
Aktuell Version 1.3.1
Senast Uppdaterad 2023-11-20
Publiceringsdatum 2022-05-07
Betyg 4.27/5 Totalt 49 Betyg
Utvecklare https://locatorjs.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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": [
                ""
            ]
        }
    ]
}