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
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
Eメール dav.tur19@gmail.com
支払い方法 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"
    }
}