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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Solr Query Debugger 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Solr Query Debugger Solr Query Debugger
ID gmpkeiamnmccifccnbfljffkcnacmmdl
공식 URL 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:\/\/*\/*"
    ]
}