Examine source code of GitHub Code Explorer

Inspect and view changes in GitHub Code Explorer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "GitHub Code Explorer",
  "homepage_url": "https://github.com/tomasbonco/githubtree",
  "author": "Tomáš Bončo",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Add a folder structure view to GitHub repositories for easier navigation and code organization",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "public/bundle.js"
      ],
      "css": []
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{735c57c4-6b23-4ea5-81e6-dcb99f2ffd98}"
    }
  }
}