Hide Files on GitHub
Hide nonessential files from the file browser
Cos'è Hide Files on GitHub?
Hide Files on GitHub è un'estensione di Chrome sviluppata da Sindre Sorhus, e la sua funzione principale è "Hide nonessential files from the file browser".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide Files on GitHub
Scarica i file di estensione Hide Files on GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Hide Files on GitHub |
ID | lpnakhpaodhdkleejaehlapdhbgjbddp |
URL Ufficiale | https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp |
Descrizione | Hide nonessential files from the file browser |
Dimensione del File | 50.67 KB |
Conteggio Installazioni | 655 |
Versione Corrente | 21.9.16 |
Ultimo Aggiornamento | 2021-09-17 |
Data di Pubblicazione | 2020-04-22 |
Valutazione | 4.36/5 Totale 14 Valutazioni |
Sviluppatore | Sindre Sorhus |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/sindresorhus/hide-files-on-github |
URL della Pagina di Aiuto | https://github.com/sindresorhus/hide-files-on-github/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
Lingue Supportate | 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" ] } ] } |