Close Figma Tab

Close Figma tab if you have "Open in Desktop App" active

什么是Close Figma Tab?

Close Figma Tab是由mamuso开发的Chrome扩展程序,该扩展的主要功能是“Close Figma tab if you have "Open in Desktop App" active”。

扩展截图

screenshot

下载Close Figma Tab扩展crx文件

下载Close Figma Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The extension will close your chrome tab after opening the Figma file in the Desktop app.                    

扩展基本信息

名称 Close Figma Tab Close Figma Tab
ID oonojkdagfgjmempbfipokgjjigkoocj
官方URL https://chromewebstore.google.com/detail/close-figma-tab/oonojkdagfgjmempbfipokgjjigkoocj
简介 Close Figma tab if you have "Open in Desktop App" active
文件大小 8.88 KB
安装次数 704
当前版本 0.0.1
更新时间 2019-04-05
上架时间 2019-04-04
评分 5.00/5 共5次评分
开发者 mamuso
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Figma Tab",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Close Figma tab if you have \"Open in Desktop App\" active",
    "homepage_url": "https:\/\/github.com\/mamuso\/close-figma-tab",
    "icons": {
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.figma.com\/file\/*",
                "https:\/\/*.figma.com\/file\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}