Repositree

Browser Extension that helps to explore Github repository

Co je Repositree?

Repositree je rozšíření Chrome vyvinuté saudchougle, a jeho hlavní funkcí je „Browser Extension that helps to explore Github repository“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Repositree

Stáhněte si soubory rozšíření Repositree ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Repositree Repositree
ID lafjldoccjnjlcmdhmniholdpjkbgajo
Oficiální URL https://chromewebstore.google.com/detail/repositree/lafjldoccjnjlcmdhmniholdpjkbgajo
Popis Browser Extension that helps to explore Github repository
Velikost souboru 314 KB
Počet instalací 146
Aktuální Verze 1.6.2
Poslední Aktualizace 2021-07-05
Datum Vydání 2020-11-13
Hodnocení 5.00/5 Celkem 8 Hodnocení
Vývojář saudchougle
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/chouglesaud/repositree
URL Stránky Nápovědy https://github.com/chouglesaud/repositree
Podporované Jazyky 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\/*\/*"
            ]
        }
    ]
}