Hide Files on GitHub

Hide nonessential files from the file browser

Τι είναι το Hide Files on GitHub;

Το Hide Files on GitHub είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sindre Sorhus, και η κύρια λειτουργία του είναι "Hide nonessential files from the file browser".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Hide Files on GitHub

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

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

                        You can customize which files to hide and you can make it more minimal in the extension's options page. This extension also works with self-hosted GitHub Enterprise.                    

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

Όνομα Hide Files on GitHub Hide Files on GitHub
ID lpnakhpaodhdkleejaehlapdhbgjbddp
Επίσημο URL https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp
Περιγραφή Hide nonessential files from the file browser
Μέγεθος Αρχείου 50.67 KB
Αριθμός Εγκαταστάσεων 655
Τρέχουσα Έκδοση 21.9.16
Τελευταία Ενημέρωση 2021-09-17
Ημερομηνία Δημοσίευσης 2020-04-22
Αξιολόγηση 4.36/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής Sindre Sorhus
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/sindresorhus/hide-files-on-github
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/sindresorhus/hide-files-on-github/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Files on GitHub",
    "version": "21.9.16",
    "description": "Hide nonessential files from the file browser",
    "homepage_url": "https:\/\/github.com\/sindresorhus\/hide-files-on-github",
    "manifest_version": 2,
    "minimum_chrome_version": "69",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "62.0"
        }
    },
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "https:\/\/github.com\/*\/*",
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/github.com\/*\/dotfiles*"
            ],
            "css": [
                "hide-files-on-github.css"
            ],
            "js": [
                "hide-files-on-github.js"
            ]
        }
    ]
}