Hide Files on GitHub
Hide nonessential files from the file browser
Vad är Hide Files on GitHub?
Hide Files on GitHub är en Chrome-tillägg utvecklad av Sindre Sorhus, och dess huvudfunktion är "Hide nonessential files from the file browser".
Tilläggsskärmbilder
Ladda ner Hide Files on GitHub-förlängningens CRX-fil
Ladda ner Hide Files on GitHub-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
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. Grundläggande Information om Tillägg
| Namn | |
| ID | lpnakhpaodhdkleejaehlapdhbgjbddp |
| Officiell webbadress | https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp |
| Beskrivning | Hide nonessential files from the file browser |
| Filstorlek | 50.67 KB |
| Antal Installationer | 655 |
| Aktuell Version | 21.9.16 |
| Senast Uppdaterad | 2021-09-17 |
| Publiceringsdatum | 2020-04-22 |
| Betyg | 4.36/5 Totalt 14 Betyg |
| Utvecklare | Sindre Sorhus |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/sindresorhus/hide-files-on-github |
| Hjälpsida URL | https://github.com/sindresorhus/hide-files-on-github/issues |
| URL till Sekretesspolicy Sidan | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
| Stödda Språk | 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"
]
}
]
} | |