Gantt Viewer for Github Project

Gantt Viewer for Github Project

Manage Github project with Gantt chart - Powered by PingCAP and TiDB

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gantt Viewer for Github Project",
  "version": "0.6",
  "description": "Manage Github project with Gantt chart - Powered by PingCAP and TiDB",
  "permissions": [
    "storage",
    "activeTab",
    "http://github.com/*",
    "https://github.com/*",
    "http://api.github.com/*",
    "https://api.github.com/*"
  ],
  "options_page": "dist/index.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "dist/popup.html",
    "default_icon": {
      "16": "icons/gantt16.png",
      "32": "icons/gantt32.png",
      "64": "icons/gantt64.png",
      "128": "icons/gantt128.png"
    }
  },
  "icons": {
    "16": "icons/gantt16.png",
    "32": "icons/gantt32.png",
    "64": "icons/gantt64.png",
    "128": "icons/gantt128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}