Neo4j Exporter

Allows Neo4j favourites to be exported / imported / downloaded.

什么是Neo4j Exporter?

Neo4j Exporter是由Evan Knowles开发的Chrome扩展程序,该扩展的主要功能是“Allows Neo4j favourites to be exported / imported / downloaded.”。

扩展截图

screenshot

下载Neo4j Exporter扩展crx文件

下载Neo4j Exporter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Neo4j Exporter Neo4j Exporter
ID nifbiilmebabmhiekpccmhjcenkkfbke
官方URL https://chromewebstore.google.com/detail/neo4j-exporter/nifbiilmebabmhiekpccmhjcenkkfbke
简介 Allows Neo4j favourites to be exported / imported / downloaded.
文件大小 47.15 KB
安装次数 103
当前版本 1.3
更新时间 2016-07-13
上架时间 2016-07-13
开发者 Evan Knowles
付费类型 free
扩展官网 http://www.knowles.co.za
支持的语言 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
}