Gitako - GitHub file tree

File tree for GitHub, and more than that.

Τι είναι το Gitako - GitHub file tree;

Το Gitako - GitHub file tree είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον EnixCoda, και η κύρια λειτουργία του είναι "File tree for GitHub, and more than that.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Gitako - GitHub file tree

Λήψη αρχείων επέκτασης Gitako - GitHub file tree σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Features
- 📂 File tree for repository, commits, and pull requests
- 🔎 Instant file search and navigation
- 🕶️ Support private repositories
- 🧩 Support GitHub enterprise, Gitea, Gitee, and more
- 🏎 Always performant, even in gigantic projects
- ⌨️ Intuitive keyboard navigation
- 📋 Copy snippets and file content
- 🎨 Various icons and official themes support
- 🗂 Support git submodule
- 📏 Fold source code

NO BS POLICY: Gitako doesn't share about your privacy data at all. GitHub access tokens are required only when you access private repositories or exceed GitHub API rate limit. Gitako stores access tokens in your chrome extension storage (not the LocalStorage) and uses them only when authenticate with GitHub.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Gitako - GitHub file tree Gitako - GitHub file tree
ID giljefjcheohhamkjphiebfjnlphnokk
Επίσημο URL https://chromewebstore.google.com/detail/gitako-github-file-tree/giljefjcheohhamkjphiebfjnlphnokk
Περιγραφή File tree for GitHub, and more than that.
Μέγεθος Αρχείου 1.86 MB
Αριθμός Εγκαταστάσεων 10,825
Τρέχουσα Έκδοση 3.11.7
Τελευταία Ενημέρωση 2023-12-15
Ημερομηνία Δημοσίευσης 2020-06-28
Αξιολόγηση 4.92/5 Συνολικά 72 Αξιολογήσεις
Προγραμματιστής EnixCoda
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/EnixCoda/Gitako
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/EnixCoda/Gitako/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/EnixCoda/Gitako/wiki/Privacy-Policy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gitako - GitHub file tree",
    "icons": {
        "64": "icons\/Gitako-64.png",
        "128": "icons\/Gitako-128.png",
        "256": "icons\/Gitako-256.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "*:\/\/*.github.com\/*",
        "*:\/\/gitako.enix.one\/*",
        "*:\/\/*.sentry.io\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "icons\/vscode\/*",
        "content.css"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/Gitako.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "firefox-shim.js",
                "browser-polyfill.js",
                "content.js"
            ]
        }
    ],
    "version": "3.11.7",
    "description": "File tree for GitHub, and more than that.",
    "author": "EnixCoda",
    "homepage_url": "https:\/\/github.com\/EnixCoda\/Gitako"
}