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是由Victor Navarro开发的Chrome扩展程序,该扩展的主要功能是“Open React.js and other web components in your editor with a single click”。

扩展截图

screenshot
screenshot

下载Filant: Open web components in your editor扩展crx文件

下载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"
    }
}