Regex search
Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form
Regex searchとは何ですか?
Regex searchはZudwaによって開発されたChromeの拡張機能で、その主な機能は「Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form」です。
拡張機能のスクリーンショット
Regex search拡張機能のCRXファイルをダウンロード
Regex search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows to search on page using regular expression pattern. Use CTRL+SHIFT+F shortcut to open search box.
拡張機能の基本情報
名前 | Regex search |
ID | bjfgihoefmkcaiipaddgpcljkjbaomfk |
公式URL | https://chromewebstore.google.com/detail/regex-search/bjfgihoefmkcaiipaddgpcljkjbaomfk |
説明 | Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form |
ファイルサイズ | 13.34 KB |
インストール数 | 236 |
現在のバージョン | 1.1 |
最終更新日 | 2016-02-25 |
公開日 | 2016-02-25 |
評価 | 3.40/5 合計 5 レビュー |
開発者 | Zudwa |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Regex search", "short_name": "Search on page using regular expression", "version": "1.1", "description": "Allows to search on page using regular expression pattern.\n\nUse CTRL+SHIFT+F hotkey to open search form", "icons": { "16": "img\/loupe-icon-16.png", "48": "img\/loupe-icon-48.png", "128": "img\/loupe-icon-128.png" }, "browser_action": { "default_icon": { "19": "img\/loupe-icon-19.png", "38": "img\/loupe-icon-38.png" }, "default_popup": "search-box.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "background.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+F", "mac": "Command+Shift+F", "chromeos": "Ctrl+Shift+F", "linux": "Ctrl+Shift+F" } } } } |