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
官方網址 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\/*\/*"
            ]
        }
    ]
}