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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/sindresorhus/hide-files-on-github/issues |
عنوان صفحة سياسة الخصوصية | 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" ] } ] } |