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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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" ] } |