Close Figma Tab
Close Figma tab if you have "Open in Desktop App" active
Wat is Close Figma Tab?
Close Figma Tab is een Chrome-extensie ontwikkeld door mamuso, en de belangrijkste functie is "Close Figma tab if you have "Open in Desktop App" active".
Extensie Screenshots
Download het CRX-bestand van de extensie Close Figma Tab
Download Close Figma Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
The extension will close your chrome tab after opening the Figma file in the Desktop app.
Basisinformatie over de Extensie
Naam | Close Figma Tab |
ID | oonojkdagfgjmempbfipokgjjigkoocj |
Officiële URL | https://chromewebstore.google.com/detail/close-figma-tab/oonojkdagfgjmempbfipokgjjigkoocj |
Beschrijving | Close Figma tab if you have "Open in Desktop App" active |
Bestandsgrootte | 8.88 KB |
Aantal Installaties | 704 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2019-04-05 |
Publicatiedatum | 2019-04-04 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | mamuso |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |