Solr Query Debugger
This extension helps to modify, execute and explain Solr queries
Was ist Solr Query Debugger?
Solr Query Debugger ist eine Chrome-Erweiterung, die von Vincenzo D'Amore entwickelt wurde, und ihr Hauptmerkmal ist "This extension helps to modify, execute and explain Solr queries".
Erweiterungsscreenshots
Solr Query Debugger-Erweiterungs-CRX-Datei herunterladen
Laden Sie Solr Query Debugger-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
[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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | gmpkeiamnmccifccnbfljffkcnacmmdl |
Offizielle URL | https://chrome.google.com/webstore/detail/solr-query-debugger/gmpkeiamnmccifccnbfljffkcnacmmdl |
Beschreibung | This extension helps to modify, execute and explain Solr queries |
Dateigröße | 3.89 MB |
Installationsanzahl | 1,000 |
Aktuelle Version | 2.5.22 |
Letztes Update | 2017-11-06 |
Veröffentlichungsdatum | 2017-11-06 |
Bewertung | 5.00/5 Insgesamt 10 Bewertungen |
Entwickler | Vincenzo D'Amore |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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:\/\/*\/*" ] } |