Figma GitHub
Browser extension that adds real-time Figma designs within GitHub
Figma GitHubとは何ですか?
Figma GitHubはLuke Camilleriによって開発されたChromeの拡張機能で、その主な機能は「Browser extension that adds real-time Figma designs within GitHub」です。
拡張機能のスクリーンショット
Figma GitHub拡張機能のCRXファイルをダウンロード
Figma GitHub拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Figma GitHub is an extension that embeds Figma real-time designs within GitHub. It searches for Figma URLs and embeds a viewer for each.
拡張機能の基本情報
名前 | Figma GitHub |
ID | bieeiojdjdkkacfckmaamnbinloppgjf |
公式URL | https://chromewebstore.google.com/detail/figma-github/bieeiojdjdkkacfckmaamnbinloppgjf |
説明 | Browser extension that adds real-time Figma designs within GitHub |
ファイルサイズ | 29.55 KB |
インストール数 | 694 |
現在のバージョン | 1.0.6 |
最終更新日 | 2018-05-08 |
公開日 | 2018-05-08 |
評価 | 4.00/5 合計 5 レビュー |
開発者 | Luke Camilleri |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/camilleriluke/figma-github |
ヘルプページのURL | https://github.com/camilleriluke/figma-github/issues |
対応言語 | 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" ] } |