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
官方網址 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"
    }
}