Filant: Open web components in your editor

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

Co to jest Filant: Open web components in your editor?

Filant: Open web components in your editor to rozszerzenie Chrome opracowane przez Victor Navarro, a jego główną funkcją jest „Open React.js and other web components in your editor with a single click”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Filant: Open web components in your editor

Pobierz pliki rozszerzeń Filant: Open web components in your editor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Filant: Open web components in your editor Filant: Open web components in your editor
ID eilfjabonchhnfknjldhlbedoimgdkfp
Oficjalny URL https://chromewebstore.google.com/detail/filant-open-web-component/eilfjabonchhnfknjldhlbedoimgdkfp
Opis Open React.js and other web components in your editor with a single click
Rozmiar pliku 71.08 KB
Liczba instalacji 55
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2021-06-10
Data Publikacji 2021-05-27
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Victor Navarro
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/pocket-apps/filant
Adres URL Strony Pomocy https://github.com/pocket-apps/filant/issues
Obsługiwane Języki 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"
    }
}