Hide Files on GitHub
Hide nonessential files from the file browser
Hide Files on GitHub क्या है?
Hide Files on GitHub Sindre Sorhus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide nonessential files from the file browser"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hide Files on GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |