Filant: Open web components in your editor

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

Was ist Filant: Open web components in your editor?

Filant: Open web components in your editor ist eine Chrome-Erweiterung, die von Victor Navarro entwickelt wurde, und ihr Hauptmerkmal ist "Open React.js and other web components in your editor with a single click".

Erweiterungsscreenshots

screenshot
screenshot

Filant: Open web components in your editor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Filant: Open web components in your editor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Filant: Open web components in your editor Filant: Open web components in your editor
ID eilfjabonchhnfknjldhlbedoimgdkfp
Offizielle URL https://chromewebstore.google.com/detail/filant-open-web-component/eilfjabonchhnfknjldhlbedoimgdkfp
Beschreibung Open React.js and other web components in your editor with a single click
Dateigröße 71.08 KB
Installationsanzahl 55
Aktuelle Version 0.1.1
Letztes Update 2021-06-10
Veröffentlichungsdatum 2021-05-27
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Victor Navarro
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/pocket-apps/filant
Hilfeseite URL https://github.com/pocket-apps/filant/issues
Unterstützte Sprachen 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"
    }
}