Figma GitHub
Browser extension that adds real-time Figma designs within GitHub
Cos'è Figma GitHub?
Figma GitHub è un'estensione di Chrome sviluppata da Luke Camilleri, e la sua funzione principale è "Browser extension that adds real-time Figma designs within GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Figma GitHub
Scarica i file di estensione Figma GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Figma GitHub is an extension that embeds Figma real-time designs within GitHub. It searches for Figma URLs and embeds a viewer for each.
Informazioni di Base sull'Estensione
Nome | Figma GitHub |
ID | bieeiojdjdkkacfckmaamnbinloppgjf |
URL Ufficiale | https://chromewebstore.google.com/detail/figma-github/bieeiojdjdkkacfckmaamnbinloppgjf |
Descrizione | Browser extension that adds real-time Figma designs within GitHub |
Dimensione del File | 29.55 KB |
Conteggio Installazioni | 694 |
Versione Corrente | 1.0.6 |
Ultimo Aggiornamento | 2018-05-08 |
Data di Pubblicazione | 2018-05-08 |
Valutazione | 4.00/5 Totale 5 Valutazioni |
Sviluppatore | Luke Camilleri |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/camilleriluke/figma-github |
URL della Pagina di Aiuto | https://github.com/camilleriluke/figma-github/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Figma GitHub", "version": "1.0.6", "description": "Browser extension that adds real-time Figma designs within GitHub", "homepage_url": "https:\/\/github.com\/camilleriluke\/figma-github", "manifest_version": 2, "minimum_chrome_version": "58", "icons": { "48": "figma-github.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*" ], "js": [ "browser-polyfill.min.js", "content.js" ] } ], "permissions": [ "https:\/\/github.com\/*" ], "web_accessible_resources": [ "iframe.html", "iframe.js" ] } |