Repositree

Browser Extension that helps to explore Github repository

Vad är Repositree?

Repositree är en Chrome-tillägg utvecklad av saudchougle, och dess huvudfunktion är "Browser Extension that helps to explore Github repository".

Tilläggsskärmbilder

screenshot

Ladda ner Repositree-förlängningens CRX-fil

Ladda ner Repositree-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Repositree Repositree
ID lafjldoccjnjlcmdhmniholdpjkbgajo
Officiell webbadress https://chromewebstore.google.com/detail/repositree/lafjldoccjnjlcmdhmniholdpjkbgajo
Beskrivning Browser Extension that helps to explore Github repository
Filstorlek 314 KB
Antal Installationer 146
Aktuell Version 1.6.2
Senast Uppdaterad 2021-07-05
Publiceringsdatum 2020-11-13
Betyg 5.00/5 Totalt 8 Betyg
Utvecklare saudchougle
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/chouglesaud/repositree
Hjälpsida URL https://github.com/chouglesaud/repositree
Stödda Språk 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\/*\/*"
            ]
        }
    ]
}