DotGit

An extension for checking if .git is exposed in visited websites

Hvad er DotGit?

DotGit er en Chrome-udvidelse udviklet af davtur19, og dens hovedfunktion er "An extension for checking if .git is exposed in visited websites".

Udvidelsesskærmbilleder

screenshot
screenshot

Download DotGit-udvidelses-CRX-fil

Download DotGit-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn DotGit DotGit
ID pampamgoihgcedonnphgehgondkhikel
Officiel URL https://chromewebstore.google.com/detail/dotgit/pampamgoihgcedonnphgehgondkhikel
Beskrivelse An extension for checking if .git is exposed in visited websites
Filstørrelse 145 KB
Antal Installationer 10,400
Nuværende Version 4.8
Senest Opdateret 2023-09-20
Udgivelsesdato 2020-06-16
Bedømmelse 5.00/5 Samlet 8 Bedømmelser
Udvikler davtur19
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/davtur19/DotGit
Hjælpeside-URL https://github.com/davtur19/DotGit/issues
Understøttede Sprog 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"
    }
}