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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}