Repositree

Browser Extension that helps to explore Github repository

What is Repositree?

Repositree is a Chrome extension developed by saudchougle, and its main feature is "Browser Extension that helps to explore Github repository".

Extension Screenshots

screenshot

Download Repositree Extension CRX File

Download Repositree extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Ctrl + B Toggle Side Bar Visibility

Features
- Clean UI
- IDE-like code tree for GitHub (Public and Private) repositories.
- Left & Right Dock Location.
- Resizable Layout.
- Github Light, Dark, Dimmed & Dark high contrast themes.
- Bookmark
- github1s(VSCode) mode.
- More Feature Coming Soon...

Privacy Policy
- Repositree doesn't share, collect your data at all.
- GitHub Access Token or GitHub Personal Access Token is required 
  only when you access private repositories or exceed the GitHub API 
  rate limit.
- Repositree store token in your chrome extension storage, not in the 
  localStorage and use only to authenticate with the GitHub.                    

Extension Basic Information

Name Repositree Repositree
ID lafjldoccjnjlcmdhmniholdpjkbgajo
Official URL https://chromewebstore.google.com/detail/repositree/lafjldoccjnjlcmdhmniholdpjkbgajo
Description Browser Extension that helps to explore Github repository
File Size 314 KB
Installation Count 146
Current Version 1.6.2
Last Updated 2021-07-05
Publish Date 2020-11-13
Rating 5.00/5 Total 8 Ratings
Developer saudchougle
Email [email protected]
Payment Type free
Extension Website https://github.com/chouglesaud/repositree
Help Page URL https://github.com/chouglesaud/repositree
Supported Languages en-US
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\/*\/*"
            ]
        }
    ]
}