Close Figma Tab
Close Figma tab if you have "Open in Desktop App" active
Vad är Close Figma Tab?
Close Figma Tab är en Chrome-tillägg utvecklad av mamuso, och dess huvudfunktion är "Close Figma tab if you have "Open in Desktop App" active".
Tilläggsskärmbilder
Ladda ner Close Figma Tab-förlängningens CRX-fil
Ladda ner Close Figma Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
The extension will close your chrome tab after opening the Figma file in the Desktop app. Grundläggande Information om Tillägg
| Namn | |
| ID | oonojkdagfgjmempbfipokgjjigkoocj |
| Officiell webbadress | https://chromewebstore.google.com/detail/close-figma-tab/oonojkdagfgjmempbfipokgjjigkoocj |
| Beskrivning | Close Figma tab if you have "Open in Desktop App" active |
| Filstorlek | 8.88 KB |
| Antal Installationer | 704 |
| Aktuell Version | 0.0.1 |
| Senast Uppdaterad | 2019-04-05 |
| Publiceringsdatum | 2019-04-04 |
| Betyg | 5.00/5 Totalt 5 Betyg |
| Utvecklare | mamuso |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |