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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } |