DotGit

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

什么是DotGit?

DotGit是由davtur19开发的Chrome扩展程序,该扩展的主要功能是“An extension for checking if .git is exposed in visited websites”。

扩展截图

screenshot
screenshot

下载DotGit扩展crx文件

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