Repositree

Browser Extension that helps to explore Github repository

什么是Repositree?

Repositree是由saudchougle开发的Chrome扩展程序,该扩展的主要功能是“Browser Extension that helps to explore Github repository”。

扩展截图

screenshot

下载Repositree扩展crx文件

下载Repositree扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Repositree Repositree
ID lafjldoccjnjlcmdhmniholdpjkbgajo
官方URL https://chromewebstore.google.com/detail/repositree/lafjldoccjnjlcmdhmniholdpjkbgajo
简介 Browser Extension that helps to explore Github repository
文件大小 314 KB
安装次数 146
当前版本 1.6.2
更新时间 2021-07-05
上架时间 2020-11-13
评分 5.00/5 共8次评分
开发者 saudchougle
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/chouglesaud/repositree
帮助页面URL https://github.com/chouglesaud/repositree
支持的语言 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\/*\/*"
            ]
        }
    ]
}