Gitako - GitHub file tree

Gitako - GitHub file tree

File tree for GitHub, and more than that.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gitako - GitHub file tree",
  "icons": {
    "64": "icons/Gitako-64.png",
    "128": "icons/Gitako-128.png",
    "256": "icons/Gitako-256.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "*://*.github.com/*",
    "*://gitako.enix.one/*",
    "*://*.sentry.io/*"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "icons/vscode/*",
    "content.css"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/Gitako.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "firefox-shim.js",
        "browser-polyfill.js",
        "content.js"
      ]
    }
  ],
  "version": "3.12.0",
  "description": "File tree for GitHub, and more than that.",
  "author": "EnixCoda",
  "homepage_url": "https://github.com/EnixCoda/Gitako"
}