Filant: Open web components in your editor

Open React.js and other web components in your editor with a single click

Hvad er Filant: Open web components in your editor?

Filant: Open web components in your editor er en Chrome-udvidelse udviklet af Victor Navarro, og dens hovedfunktion er "Open React.js and other web components in your editor with a single click".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Filant: Open web components in your editor-udvidelses-CRX-fil

Download Filant: Open web components in your editor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Select your favorite editor among the most popular ones, install a simple plugin for your bundler of choose and now simply open React.js and other web components in your editor by right-clicking the HTML elements.                    

Grundlæggende oplysninger om udvidelsen

Navn Filant: Open web components in your editor Filant: Open web components in your editor
ID eilfjabonchhnfknjldhlbedoimgdkfp
Officiel URL https://chromewebstore.google.com/detail/filant-open-web-component/eilfjabonchhnfknjldhlbedoimgdkfp
Beskrivelse Open React.js and other web components in your editor with a single click
Filstørrelse 71.08 KB
Antal Installationer 55
Nuværende Version 0.1.1
Senest Opdateret 2021-06-10
Udgivelsesdato 2021-05-27
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Victor Navarro
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/pocket-apps/filant
Hjælpeside-URL https://github.com/pocket-apps/filant/issues
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Filant: Open web components in your editor",
    "description": "Open React.js and other web components in your editor with a single click",
    "version": "0.1.1",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "action": {
        "default_popup": ".\/popup\/index.html",
        "default_icon": {
            "16": "\/images\/logo\/filant16.png",
            "32": "\/images\/logo\/filant32.png",
            "48": "\/images\/logo\/filant48.png",
            "128": "\/images\/logo\/filant128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo\/filant16.png",
        "32": "\/images\/logo\/filant32.png",
        "48": "\/images\/logo\/filant48.png",
        "128": "\/images\/logo\/filant128.png"
    }
}