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" } } |