Solr Query Debugger

This extension helps to modify, execute and explain Solr queries

O que é Solr Query Debugger?

Solr Query Debugger é uma extensão do Chrome desenvolvida por Vincenzo D'Amore, e sua principal característica é "This extension helps to modify, execute and explain Solr queries".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Solr Query Debugger

Baixe arquivos de extensão Solr Query Debugger no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        [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.                    

Informações Básicas da Extensão

Nome Solr Query Debugger Solr Query Debugger
ID gmpkeiamnmccifccnbfljffkcnacmmdl
URL Oficial https://chrome.google.com/webstore/detail/solr-query-debugger/gmpkeiamnmccifccnbfljffkcnacmmdl
Descrição This extension helps to modify, execute and explain Solr queries
Tamanho do Arquivo 3.89 MB
Contagem de Instalações 1,000
Versão Atual 2.5.22
Última Atualização 2017-11-06
Data de Publicação 2017-11-06
Classificação 5.00/5 Total de 10 Avaliações
Desenvolvedor Vincenzo D'Amore
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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:\/\/*\/*"
    ]
}