Neo4j Exporter
Allows Neo4j favourites to be exported / imported / downloaded.
¿Qué es Neo4j Exporter?
Neo4j Exporter es una extensión de Chrome desarrollada por Evan Knowles, y su función principal es "Allows Neo4j favourites to be exported / imported / downloaded.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Neo4j Exporter
Descarga archivos de extensión Neo4j Exporter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Neo4j provides an excellent front-end for querying the database, however it does not provide functionality for importing / exporting favourite scripts - commonly users are advised to manually copy and paste them. This extension adds a second menu in the favourites tab, that allows for the scripts to be downloaded as readable scripts, or downloaded as a file that can be imported into another Neo4j browser by dragging and dropping the file. The extension updates any scripts that have a matching ID to a script that already exists, and appends it to the list otherwise. Existing scripts that are not in the import are not changed, and folder IDs are updated in case the importing system has a different folder ID from the target system.
Información Básica de la Extensión
Nombre | Neo4j Exporter |
ID | nifbiilmebabmhiekpccmhjcenkkfbke |
URL Oficial | https://chromewebstore.google.com/detail/neo4j-exporter/nifbiilmebabmhiekpccmhjcenkkfbke |
Descripción | Allows Neo4j favourites to be exported / imported / downloaded. |
Tamaño del Archivo | 47.15 KB |
Cantidad de Instalaciones | 103 |
Versión Actual | 1.3 |
Última Actualización | 2016-07-13 |
Fecha de Publicación | 2016-07-13 |
Desarrollador | Evan Knowles |
Tipo de Pago | free |
Sitio Web de la Extensión | http://www.knowles.co.za |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Neo4j Exporter", "description": "Allows Neo4j favourites to be exported \/ imported \/ downloaded.", "version": "1.3", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "js\/jquery-3.0.0.min.js", "script.js" ], "css": [ "css\/style.css" ], "run_at": "document_end" } ], "manifest_version": 2 } |