Neo4j Exporter
Allows Neo4j favourites to be exported / imported / downloaded.
Neo4j Exporter là gì?
Neo4j Exporter là một tiện ích mở rộng Chrome được phát triển bởi Evan Knowles, và tính năng chính của nó là "Allows Neo4j favourites to be exported / imported / downloaded.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Neo4j Exporter
Tải xuống các tệp mở rộng Neo4j Exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Neo4j Exporter |
ID | nifbiilmebabmhiekpccmhjcenkkfbke |
URL Chính Thức | https://chromewebstore.google.com/detail/neo4j-exporter/nifbiilmebabmhiekpccmhjcenkkfbke |
Mô tả | Allows Neo4j favourites to be exported / imported / downloaded. |
Kích Thước Tệp | 47.15 KB |
Số Lần Cài Đặt | 103 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2016-07-13 |
Ngày Phát Hành | 2016-07-13 |
Nhà Phát Triển | Evan Knowles |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.knowles.co.za |
Ngôn Ngữ Được Hỗ Trợ | 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 } |