Figma

Figma

Figmaคืออะไร?

Figma เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Figma และคุณลักษณะหลักของมันคือ "Figma"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Figma

ดาวน์โหลดไฟล์ส่วนขยาย Figma ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Start meetings off on the right foot by connecting Google calendar to Figma.  Use the Figma for Chrome extension to attach Figma and FigJam files to your Google Calendar events and make every brainstorm, project kick off, and critique a jam.

PREP FOR MEETINGS
Stay in the flow by quick-adding Figma or FigJam files to events as you add them to your calendar.

ADD RELEVANT FILES
Create a new file on the spot, or attach one or many files that you’ve already prepared.

POINT ATTENDEES TO THE RIGHT RESOURCE
Files appear right in the calendar event, so it’s easy for participants to see which resources will need their attention.

Learn more about how Figma helps thousands of teams build better products together at figma.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Figma Figma
ID fkmaohpngenfoccdgceedjkfhkdcohmg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/figma/fkmaohpngenfoccdgceedjkfhkdcohmg
คำอธิบาย Figma
ขนาดไฟล์ 1.36 MB
จำนวนการติดตั้ง 80,000
เวอร์ชันปัจจุบัน 1.3.2
อัปเดตครั้งล่าสุด 2024-01-02
วันที่เผยแพร่ 2022-09-17
คะแนน 4.68/5 รวมทั้งหมด 28 คะแนน
ผู้พัฒนา Figma
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.figma.com
URL หน้าช่วยเหลือ https://help.figma.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Figma",
    "description": "Figma",
    "version": "1.3.2",
    "action": {
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/calendar\/*",
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*.png",
                "font\/*.woff2",
                "file_picker.html"
            ],
            "matches": [
                "https:\/\/www.google.com\/*",
                "https:\/\/calendar.google.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self'; connect-src https:\/\/api.figma.com https:\/\/figma.com https:\/\/www.figma.com https:\/\/*.sentry.io; img-src *; style-src 'unsafe-inline'; object-src 'none'"
    },
    "permissions": [
        "storage",
        "identity",
        "tabs"
    ],
    "optional_permissions": [
        "cookies"
    ],
    "optional_host_permissions": [
        "https:\/\/www.figma.com\/"
    ]
}