Treedoc Viewer

Treedoc Viewer

A treedoc viewer as chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Treedoc Viewer",
  "version": "0.1.6",
  "homepage_url": "http://treedoc.org",
  "description": "A treedoc viewer as chrome extension",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "contextMenus",
    "activeTab",
    "<all_urls>",
    "*://*/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file:///*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "override.html",
    "js/override.js"
  ],
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}