Neo4j Exporter

Neo4j Exporter

Allows Neo4j favourites to be exported / imported / downloaded.

Additional files are visible only to premium users

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
}