Datastore Notes for Google App Engine™

Datastore Notes for Google App Engine™

Chrome Extension to allow annotations to Google App Engine™ datastore records.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "exclude_globs": [],
      "exclude_matches": [],
      "include_globs": [
        "*//appengine.google.com/datastore/explorer*"
      ],
      "css": [
        "css/notesForAppEngine.css"
      ],
      "js": [
        "js/lib/jquery-2.1.0.min.map",
        "js/lib/jquery-2.1.0.min.js",
        "js/KeyFilterer.js",
        "js/notesForAppEngine.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Chrome Extension to allow annotations to Google App Engine™ datastore records.",
  "name": "Datastore Notes for Google App Engine™",
  "version": "0.9.1",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "js/lib/jquery-2.1.0.min.map"
  ],
  "icons": {
    "16": "images/NotesForAppEngine-16.png",
    "48": "images/NotesForAppEngine-48.png",
    "128": "images/NotesForAppEngine-128.png"
  }
}