Hide Files on GitHub
Hide nonessential files from the file browser
Was ist Hide Files on GitHub?
Hide Files on GitHub ist eine Chrome-Erweiterung, die von Sindre Sorhus entwickelt wurde, und ihr Hauptmerkmal ist "Hide nonessential files from the file browser".
Erweiterungsscreenshots
Hide Files on GitHub-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hide Files on GitHub-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Hide Files on GitHub |
ID | lpnakhpaodhdkleejaehlapdhbgjbddp |
Offizielle URL | https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp |
Beschreibung | Hide nonessential files from the file browser |
Dateigröße | 50.67 KB |
Installationsanzahl | 655 |
Aktuelle Version | 21.9.16 |
Letztes Update | 2021-09-17 |
Veröffentlichungsdatum | 2020-04-22 |
Bewertung | 4.36/5 Insgesamt 14 Bewertungen |
Entwickler | Sindre Sorhus |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/sindresorhus/hide-files-on-github |
Hilfeseite URL | https://github.com/sindresorhus/hide-files-on-github/issues |
URL der Datenschutzrichtlinien-Seite | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
Unterstützte Sprachen | 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" ] } ] } |