Close Figma Tab

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

What is Close Figma Tab?

Close Figma Tab is a Chrome extension developed by mamuso, and its main feature is "Close Figma tab if you have "Open in Desktop App" active".

Extension Screenshots

screenshot

Download Close Figma Tab Extension CRX File

Download Close Figma Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Close Figma Tab Close Figma Tab
ID oonojkdagfgjmempbfipokgjjigkoocj
Official URL https://chromewebstore.google.com/detail/close-figma-tab/oonojkdagfgjmempbfipokgjjigkoocj
Description Close Figma tab if you have "Open in Desktop App" active
File Size 8.88 KB
Installation Count 704
Current Version 0.0.1
Last Updated 2019-04-05
Publish Date 2019-04-04
Rating 5.00/5 Total 5 Ratings
Developer mamuso
Payment Type free
Supported Languages 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"
    ]
}