Repositree

Repositree

Browser Extension that helps to explore Github repository

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Repositree",
  "author": "Saud Chougle",
  "minimum_chrome_version": "60",
  "permissions": [
    "storage",
    "https://api.github.com/*"
  ],
  "version": "1.6.2",
  "description": "Browser Extension that helps to explore Github repository",
  "content_scripts": [
    {
      "run_at": "document_start",
      "css": [
        "./style.css"
      ],
      "js": [
        "./content.js"
      ],
      "matches": [
        "https://github.com/*/*"
      ]
    }
  ]
}