DotGit
An extension for checking if .git is exposed in visited websites
DotGit là gì?
DotGit là một tiện ích mở rộng Chrome được phát triển bởi davtur19, và tính năng chính của nó là "An extension for checking if .git is exposed in visited websites".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DotGit
Tải xuống các tệp mở rộng DotGit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DotGit |
ID | pampamgoihgcedonnphgehgondkhikel |
URL Chính Thức | https://chromewebstore.google.com/detail/dotgit/pampamgoihgcedonnphgehgondkhikel |
Mô tả | An extension for checking if .git is exposed in visited websites |
Kích Thước Tệp | 145 KB |
Số Lần Cài Đặt | 10,400 |
Phiên Bản Hiện Tại | 4.8 |
Cập Nhật Lần Cuối | 2023-09-20 |
Ngày Phát Hành | 2020-06-16 |
Đánh Giá | 5.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | davtur19 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/davtur19/DotGit |
URL Trang Trợ Giúp | https://github.com/davtur19/DotGit/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |