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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" ] } ] } |