Filant: Open web components in your editor

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

Что такое Filant: Open web components in your editor?

Filant: Open web components in your editor - это расширение Chrome, разработанное Victor Navarro, и его основная функция - "Open React.js and other web components in your editor with a single click".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Filant: Open web components in your editor

Скачайте файлы расширений Filant: Open web components in your editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Filant: Open web components in your editor Filant: Open web components in your editor
ID eilfjabonchhnfknjldhlbedoimgdkfp
Официальный URL https://chromewebstore.google.com/detail/filant-open-web-component/eilfjabonchhnfknjldhlbedoimgdkfp
Описание Open React.js and other web components in your editor with a single click
Размер файла 71.08 KB
Количество установок 55
Текущая Версия 0.1.1
Последнее Обновление 2021-06-10
Дата публикации 2021-05-27
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Victor Navarro
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/pocket-apps/filant
URL страницы помощи https://github.com/pocket-apps/filant/issues
Поддерживаемые языки 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"
    }
}