Solr 4.1 helper

Save or Restore query

Solr 4.1 helper क्या है?

Solr 4.1 helper daniel.blanc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save or Restore query"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Solr 4.1 helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension allows to save and restore Solr 4.1 server requests when using the Solr administration page.
The Solr admin web page has a query form that helps to build a complex query by filling the form fields and submitting the form. When debugging a design with this form it is  painful to fill again and again the same fields.
This extension permits to persist the query fields in the browser storage with the "Save current query" button. The saved query then appears in the list and the user can restore this query fields in the form by clicking on the query name in the list.
Each query data can be removed from the storage by clicking on the cross button behind the query name.
Clicking on "Export" button put in the clipboard a json representing the query list persisted in the storage.  "Import" button allows to import a query list previously exported.                    

एक्सटेंशन की मूल जानकारी

नाम Solr 4.1 helper Solr 4.1 helper
ID afnjhkbimbgffifhihejifchdidmolcn
आधिकारिक URL https://chromewebstore.google.com/detail/solr-41-helper/afnjhkbimbgffifhihejifchdidmolcn
विवरण Save or Restore query
फ़ाइल का आकार 24.57 KB
स्थापना संख्या 37
वर्तमान संस्करण 0.0.0.2
अंतिम अपडेट 2021-02-18
प्रकाशन तिथि 2021-02-18
डेवलपर daniel.blanc
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Solr 4.1 helper",
    "version": "0.0.0.2",
    "description": "Save or Restore query",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*:8983\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/solr_16.png",
            "32": "images\/solr_32.png",
            "48": "images\/solr_48.png",
            "128": "images\/solr_128.png"
        }
    },
    "icons": {
        "16": "images\/solr_16.png",
        "32": "images\/solr_32.png",
        "48": "images\/solr_48.png",
        "128": "images\/solr_128.png"
    },
    "manifest_version": 2
}