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