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文件
下載Solr 4.1 helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } |