Solr Query Debugger
This extension helps to modify, execute and explain Solr queries
什麼是Solr Query Debugger?
Solr Query Debugger是由Vincenzo D'Amore開發的Chrome擴展程式,該擴展的主要功能是“This extension helps to modify, execute and explain Solr queries”。
擴展截圖
下載Solr Query Debugger擴展crx文件
下載Solr Query Debugger擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
[TLDR] This extension aims to help Solr developers and users with queries. You can modify Solr queries, execute, debug and, very important, see the explain in a crystal clear format. Solr queries are full of short parameters, hard to read and modify, especially when the parameters are too many. And after all this, it is even harder to debug and understand why a document is more or less relevant than another. The Solr debug explain output is a three too big to fit in one page. Finally, in real world Solr queries are often generated by applications so it is really painful try to execute them. This plugin offers the ability to execute the queries and show the output in a human readable format. Parameters, documents, facets, debug, explain are well organised and structured.
擴展基本資訊
名稱 | |
ID | gmpkeiamnmccifccnbfljffkcnacmmdl |
官方網址 | https://chrome.google.com/webstore/detail/solr-query-debugger/gmpkeiamnmccifccnbfljffkcnacmmdl |
簡介 | This extension helps to modify, execute and explain Solr queries |
檔案大小 | 3.89 MB |
安裝次數 | 1,000 |
目前版本 | 2.5.22 |
更新時間 | 2017-11-06 |
上架時間 | 2017-11-06 |
評分 | 5.00/5 共 10 次評分 |
開發者 | Vincenzo D'Amore |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "options_page": "options.html", "name": "Solr Query Debugger", "short_name": "SolrQueryDebugger", "description": "This extension helps to modify, execute and explain Solr queries", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "minimum_chrome_version": "23", "version": "2.5.22", "icons": { "16": "solr_icon_full.png", "48": "solr_icon_full.png", "128": "solr_icon_full.png" }, "browser_action": { "default_icon": "solr_icon_full_2.png", "default_popup": "popup.html", "default_title": "Solr Query Debugger" }, "permissions": [ "notifications", "storage", "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |