Figma GitHub

Browser extension that adds real-time Figma designs within GitHub

Figma GitHub là gì?

Figma GitHub là một tiện ích mở rộng Chrome được phát triển bởi Luke Camilleri, và tính năng chính của nó là "Browser extension that adds real-time Figma designs within GitHub".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Figma GitHub

Tải xuống các tệp mở rộng Figma GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Figma GitHub is an extension that embeds Figma real-time designs within GitHub. It searches for Figma URLs and embeds a viewer for each.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Figma GitHub Figma GitHub
ID bieeiojdjdkkacfckmaamnbinloppgjf
URL Chính Thức https://chromewebstore.google.com/detail/figma-github/bieeiojdjdkkacfckmaamnbinloppgjf
Mô tả Browser extension that adds real-time Figma designs within GitHub
Kích Thước Tệp 29.55 KB
Số Lần Cài Đặt 694
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2018-05-08
Ngày Phát Hành 2018-05-08
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Luke Camilleri
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/camilleriluke/figma-github
URL Trang Trợ Giúp https://github.com/camilleriluke/figma-github/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}