Figma Search

Search through Figma objects even in “View only” mode

What is Figma Search?

Figma Search is a Chrome extension developed by Igor Adamenko, and its main feature is "Search through Figma objects even in “View only” mode".

Extension Screenshots

screenshot

Download Figma Search Extension CRX File

Download Figma Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Figma Search Figma Search
ID lfofpannpmmeeicgiiacjghmcfgnebbi
Official URL https://chromewebstore.google.com/detail/figma-search/lfofpannpmmeeicgiiacjghmcfgnebbi
Description Search through Figma objects even in “View only” mode
File Size 136 KB
Installation Count 698
Current Version 1.3.2
Last Updated 2021-04-29
Publish Date 2021-03-08
Rating 4.20/5 Total 5 Ratings
Developer Igor Adamenko
Email [email protected]
Payment Type free
Extension Website https://github.com/igoradamenko/figma-search-extension
Help Page URL https://github.com/igoradamenko/figma-search-extension/issues
Supported Languages 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"
    ]
}