Filant: Open web components in your editor

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

Wat is Filant: Open web components in your editor?

Filant: Open web components in your editor is een Chrome-extensie ontwikkeld door Victor Navarro, en de belangrijkste functie is "Open React.js and other web components in your editor with a single click".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Filant: Open web components in your editor

Download Filant: Open web components in your editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Filant: Open web components in your editor Filant: Open web components in your editor
ID eilfjabonchhnfknjldhlbedoimgdkfp
Officiële URL https://chromewebstore.google.com/detail/filant-open-web-component/eilfjabonchhnfknjldhlbedoimgdkfp
Beschrijving Open React.js and other web components in your editor with a single click
Bestandsgrootte 71.08 KB
Aantal Installaties 55
Huidige Versie 0.1.1
Laatst Bijgewerkt 2021-06-10
Publicatiedatum 2021-05-27
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Victor Navarro
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/pocket-apps/filant
Help Pagina-URL https://github.com/pocket-apps/filant/issues
Ondersteunde Talen 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"
    }
}