Figma Search

Search through Figma objects even in “View only” mode

Figma Searchคืออะไร?

Figma Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Igor Adamenko และคุณลักษณะหลักของมันคือ "Search through Figma objects even in “View only” mode"

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

screenshot

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

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

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

                        This extension allows you search for Figma objects. Currently Figma does not have such built-in option, so you can use this plugin as a temporary solution.

The extension works even in “View only” mode, where no other Figma plugins work.                    

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

ชื่อ Figma Search Figma Search
ID lfofpannpmmeeicgiiacjghmcfgnebbi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/figma-search/lfofpannpmmeeicgiiacjghmcfgnebbi
คำอธิบาย Search through Figma objects even in “View only” mode
ขนาดไฟล์ 136 KB
จำนวนการติดตั้ง 698
เวอร์ชันปัจจุบัน 1.3.2
อัปเดตครั้งล่าสุด 2021-04-29
วันที่เผยแพร่ 2021-03-08
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Igor Adamenko
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/igoradamenko/figma-search-extension
URL หน้าช่วยเหลือ https://github.com/igoradamenko/figma-search-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Figma Search",
    "version": "1.3.2",
    "description": "Search through Figma objects even in \u201cView only\u201d mode",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "256": "icon.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            },
            "description": "Open the extension"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.figma.com\/*"
            ],
            "js": [
                "figma-bg.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "figma-bridge.js"
    ]
}