Figma Search

Search through Figma objects even in “View only” mode

Figma Search là gì?

Figma Search là một tiện ích mở rộng Chrome được phát triển bởi Igor Adamenko, và tính năng chính của nó là "Search through Figma objects even in “View only” mode".

Ả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 Search

Tải xuống các tệp mở rộng Figma Search 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

                        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.                    

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

Tên Figma Search Figma Search
ID lfofpannpmmeeicgiiacjghmcfgnebbi
URL Chính Thức https://chromewebstore.google.com/detail/figma-search/lfofpannpmmeeicgiiacjghmcfgnebbi
Mô tả Search through Figma objects even in “View only” mode
Kích Thước Tệp 136 KB
Số Lần Cài Đặt 698
Phiên Bản Hiện Tại 1.3.2
Cập Nhật Lần Cuối 2021-04-29
Ngày Phát Hành 2021-03-08
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Igor Adamenko
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/igoradamenko/figma-search-extension
URL Trang Trợ Giúp https://github.com/igoradamenko/figma-search-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}