DotGit
An extension for checking if .git is exposed in visited websites
DotGitคืออะไร?
DotGit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย davtur19 และคุณลักษณะหลักของมันคือ "An extension for checking if .git is exposed in visited websites"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DotGit
ดาวน์โหลดไฟล์ส่วนขยาย DotGit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An extension for checking if .git is exposed in visited websites - Check if a .git/.svn/.hg folder exists for each site you visit - Check if a .env file exists for each site you visit - Check if the site is open source (github/gitlab) - Check if the site has security.txt - You will be notified when a folder is found - List of exposed sites found - Download the entire .git folder in zip format, even if the files are not listed on the site - View .git/config with one click - Options for: colors, notifications and downloads Some checks are turned off by default, open the settings to turn them on Source code: https://github.com/davtur19/DotGit
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | DotGit |
ID | pampamgoihgcedonnphgehgondkhikel |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/dotgit/pampamgoihgcedonnphgehgondkhikel |
คำอธิบาย | An extension for checking if .git is exposed in visited websites |
ขนาดไฟล์ | 145 KB |
จำนวนการติดตั้ง | 10,400 |
เวอร์ชันปัจจุบัน | 4.8 |
อัปเดตครั้งล่าสุด | 2023-09-20 |
วันที่เผยแพร่ | 2020-06-16 |
คะแนน | 5.00/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | davtur19 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/davtur19/DotGit |
URL หน้าช่วยเหลือ | https://github.com/davtur19/DotGit/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DotGit", "version": "4.8", "description": "An extension for checking if .git is exposed in visited websites", "icons": { "16": "icons\/dotgit-16.png", "32": "icons\/dotgit-32.png", "48": "icons\/dotgit-48.png", "96": "icons\/dotgit-96.png", "128": "icons\/dotgit-128.png" }, "permissions": [ "*:\/\/*\/*", "webRequest", "storage", "notifications", "downloads" ], "background": { "scripts": [ "dotgit.js", "lib\/pako_inflate.min.js", "lib\/jszip.min.js" ] }, "browser_action": { "default_title": "DotGit", "default_popup": "popup\/popup.html" }, "options_ui": { "page": "options\/options.html" } } |