Figma Search

Search through Figma objects even in “View only” mode

什麼是Figma Search?

Figma Search是由Igor Adamenko開發的Chrome擴展程式,該擴展的主要功能是“Search through Figma objects even in “View only” mode”。

擴展截圖

screenshot

下載Figma Search擴展crx文件

下載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
官方網址 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"
    ]
}