Solr 4.1 helper
Save or Restore query
Solr 4.1 helper란 무엇입니까?
Solr 4.1 helper은(는) daniel.blanc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save or Restore query"입니다.
확장 프로그램 스크린샷
Solr 4.1 helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows to save and restore Solr 4.1 server requests when using the Solr administration page. The Solr admin web page has a query form that helps to build a complex query by filling the form fields and submitting the form. When debugging a design with this form it is painful to fill again and again the same fields. This extension permits to persist the query fields in the browser storage with the "Save current query" button. The saved query then appears in the list and the user can restore this query fields in the form by clicking on the query name in the list. Each query data can be removed from the storage by clicking on the cross button behind the query name. Clicking on "Export" button put in the clipboard a json representing the query list persisted in the storage. "Import" button allows to import a query list previously exported.
확장 프로그램 기본 정보
이름 | Solr 4.1 helper |
ID | afnjhkbimbgffifhihejifchdidmolcn |
공식 URL | https://chromewebstore.google.com/detail/solr-41-helper/afnjhkbimbgffifhihejifchdidmolcn |
설명 | Save or Restore query |
파일 크기 | 24.57 KB |
설치 횟수 | 37 |
현재 버전 | 0.0.0.2 |
최근 업데이트 | 2021-02-18 |
출시 날짜 | 2021-02-18 |
개발자 | daniel.blanc |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Solr 4.1 helper", "version": "0.0.0.2", "description": "Save or Restore query", "permissions": [ "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*:8983\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/solr_16.png", "32": "images\/solr_32.png", "48": "images\/solr_48.png", "128": "images\/solr_128.png" } }, "icons": { "16": "images\/solr_16.png", "32": "images\/solr_32.png", "48": "images\/solr_48.png", "128": "images\/solr_128.png" }, "manifest_version": 2 } |