Solr 4.1 helper
Save or Restore query
Τι είναι το Solr 4.1 helper;
Το Solr 4.1 helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον daniel.blanc, και η κύρια λειτουργία του είναι "Save or Restore query".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Solr 4.1 helper
Λήψη αρχείων επέκτασης Solr 4.1 helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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 } |