Solr Query Debugger

This extension helps to modify, execute and explain Solr queries

Solr Query Debugger là gì?

Solr Query Debugger là một tiện ích mở rộng Chrome được phát triển bởi Vincenzo D'Amore, và tính năng chính của nó là "This extension helps to modify, execute and explain Solr queries".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Solr Query Debugger

Tải xuống các tệp mở rộng Solr Query Debugger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Solr Query Debugger Solr Query Debugger
ID gmpkeiamnmccifccnbfljffkcnacmmdl
URL Chính Thức https://chrome.google.com/webstore/detail/solr-query-debugger/gmpkeiamnmccifccnbfljffkcnacmmdl
Mô tả This extension helps to modify, execute and explain Solr queries
Kích Thước Tệp 3.89 MB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 2.5.22
Cập Nhật Lần Cuối 2017-11-06
Ngày Phát Hành 2017-11-06
Đánh Giá 5.00/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Vincenzo D'Amore
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}