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”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |