Solr 4.1 helper

Save or Restore query

O que é Solr 4.1 helper?

Solr 4.1 helper é uma extensão do Chrome desenvolvida por daniel.blanc, e sua principal característica é "Save or Restore query".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Solr 4.1 helper

Baixe arquivos de extensão Solr 4.1 helper 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

                        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.                    

Informações Básicas da Extensão

Nome Solr 4.1 helper Solr 4.1 helper
ID afnjhkbimbgffifhihejifchdidmolcn
URL Oficial https://chromewebstore.google.com/detail/solr-41-helper/afnjhkbimbgffifhihejifchdidmolcn
Descrição Save or Restore query
Tamanho do Arquivo 24.57 KB
Contagem de Instalações 37
Versão Atual 0.0.0.2
Última Atualização 2021-02-18
Data de Publicação 2021-02-18
Desenvolvedor daniel.blanc
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}