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ファイルをダウンロード

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.                    

拡張機能の基本情報

名前 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
Eメール [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:\/\/*\/*"
    ]
}