ZenHub for GitHub

ZenHub for GitHub

Zenhub – Project Management Inside GitHub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ZenHub for GitHub",
  "short_name": "Zenhub",
  "version": "4.2.7",
  "manifest_version": 3,
  "description": "Zenhub – Project Management Inside GitHub",
  "author": "Axiom Zen",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "img/ZH-16.png",
    "48": "img/ZH-48.png",
    "128": "img/ZH-128.png"
  },
  "action": {
    "default_icon": {
      "19": "img/ZH-19.png",
      "38": "img/ZH-38.png"
    },
    "default_title": "Zenhub",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "css": [
        "css/extension-main.css",
        "js/built/coreStyles.css",
        "js/built/main.css",
        "js/built/vendor.css"
      ],
      "run_at": "document_start",
      "exclude_matches": [
        "https://github.com/pages/*"
      ]
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "js/built/vendor.js",
        "js/built/icons.js",
        "js/built/config.js",
        "js/built/main.js"
      ],
      "run_at": "document_end",
      "exclude_matches": [
        "https://github.com/pages/*"
      ]
    }
  ],
  "background": {
    "service_worker": "js/worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/*",
        "templates/*",
        "img/**/*",
        "font/*"
      ],
      "matches": [
        "https://github.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "*://api.zenhub.com/*",
    "*://github.com/*",
    "*://api.github.com/*"
  ]
}