RegExp Search and Highlight
Find text content with regular expression and highlight it, or collapse unnecessary blocks.
RegExp Search and Highlight란 무엇입니까?
RegExp Search and Highlight은(는) Alexandr Pudich에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find text content with regular expression and highlight it, or collapse unnecessary blocks."입니다.
확장 프로그램 스크린샷
RegExp Search and Highlight 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Find text content with regular expression and highlight it, or collapse unnecessary blocks. It was writed for facilitating some text log analyze. You can to add "url matches" for permanent enabling on some domains / pages. ### Features: * local storage of preferences (currently there is no need for synchronized storage) * import / export profiles * enable / disable on tab * customizable work mode (e.g. you can add regexp matching to needly URL's, where extension will active always) * color changing ability for every regexp and collapse block * reading sequential text elements, to which chrome devide the content due to constraints (~ 65535 length). Bypassing the built-in elements is not implemented for a variety of reasons and also as useless * notifying activated tabs when profile is modified --------------------- ### TODO * store page in cache for ability to rerun functions (will fully work by "refresh" button in popup) without page reloading * add locales * exclude other extensions influence JS files in this packet was minified. But source code is available on github, you can fork it, discuss and offer improvements! [ https://github.com/linkuha/ext-resh ]
확장 프로그램 기본 정보
이름 | RegExp Search and Highlight |
ID | hfoealcpjklgmfbdkoeckhegfnacembo |
공식 URL | https://chromewebstore.google.com/detail/regexp-search-and-highlig/hfoealcpjklgmfbdkoeckhegfnacembo |
설명 | Find text content with regular expression and highlight it, or collapse unnecessary blocks. |
파일 크기 | 23.99 KB |
설치 횟수 | 204 |
현재 버전 | 0.1.4 |
최근 업데이트 | 2018-04-16 |
출시 날짜 | 2018-04-16 |
평점 | 3.44/5 총 9 개의 평점 |
개발자 | Alexandr Pudich |
결제 유형 | free |
지원되는 언어 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RegExp Search and Highlight", "short_name": "RegExp Search and Highlight", "description": "Find text content with regular expression and highlight it, or collapse unnecessary blocks.", "version": "0.1.4", "default_locale": "en", "icons": { "128": "img\/icon128.png", "48": "img\/icon48.png" }, "offline_enabled": true, "web_accessible_resources": [ "css\/content.css" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "options_page": "options.html", "permissions": [ "activeTab", "storage" ], "browser_action": { "default_title": "RegExp Search and Highlight", "default_icon": "img\/icon48.png", "default_popup": "popup.html" } } |