Figma GitHub
Browser extension that adds real-time Figma designs within GitHub
What is Figma GitHub?
Figma GitHub is a Chrome extension developed by Luke Camilleri, and its main feature is "Browser extension that adds real-time Figma designs within GitHub".
Extension Screenshots
Download Figma GitHub Extension CRX File
Download Figma GitHub 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
Figma GitHub is an extension that embeds Figma real-time designs within GitHub. It searches for Figma URLs and embeds a viewer for each.
Extension Basic Information
Name | Figma GitHub |
ID | bieeiojdjdkkacfckmaamnbinloppgjf |
Official URL | https://chromewebstore.google.com/detail/figma-github/bieeiojdjdkkacfckmaamnbinloppgjf |
Description | Browser extension that adds real-time Figma designs within GitHub |
File Size | 29.55 KB |
Installation Count | 694 |
Current Version | 1.0.6 |
Last Updated | 2018-05-08 |
Publish Date | 2018-05-08 |
Rating | 4.00/5 Total 5 Ratings |
Developer | Luke Camilleri |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/camilleriluke/figma-github |
Help Page URL | https://github.com/camilleriluke/figma-github/issues |
Supported Languages | 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" ] } |