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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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