Octotree - GitHub code tree

Octotree - GitHub code tree

GitHub on steroids

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Octotree - GitHub code tree",
  "version": "7.12.2",
  "description": "GitHub on steroids",
  "homepage_url": "https://www.octotree.io",
  "author": "Team Octotree",
  "manifest_version": 2,
  "minimum_chrome_version": "60",
  "applications": {
    "gecko": {
      "id": "jid1-Om7eJGwA1U8Akg@jetpack",
      "strict_min_version": "55.0"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon128.png",
    "browser_style": true
  },
  "permissions": [
    "https://api.github.com/*",
    "https://www.octotree.io/*",
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "*.woff2",
    "*.png",
    "*.gif",
    "*.svg"
  ],
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "browser-polyfill.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ]
}