Get Git

Find misconfigured, web accessible .git directories on websites you browse.

Get Gitとは何ですか?

Get GitはJack Kingsmanによって開発されたChromeの拡張機能で、その主な機能は「Find misconfigured, web accessible .git directories on websites you browse.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Get Git拡張機能のCRXファイルをダウンロード

Get Git拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Get Git scans websites for web accessible .git directories, which can expose all manner of data including:

* past and present source code
* internal network structure (remote origins)
* sensitive API keys and credentials
* and more!

Quick info is available by clicking on the wrench for an entry, including the config file, .gitignore, the repo description, etc. Now offers unobtrusive CSS notifications!

This project is open source and MIT licensed; contribute at https://github.com/jkingsman/get-git.                    

拡張機能の基本情報

名前 Get Git Get Git
ID agddmammmnpdglmincfngjfnehmopoln
公式URL https://chromewebstore.google.com/detail/get-git/agddmammmnpdglmincfngjfnehmopoln
説明 Find misconfigured, web accessible .git directories on websites you browse.
ファイルサイズ 173 KB
インストール数 326
現在のバージョン 0.1.4
最終更新日 2019-01-20
公開日 2019-01-20
評価 3.17/5 合計 6 レビュー
開発者 Jack Kingsman
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/jkingsman/get-git
ヘルプページのURL https://github.com/jkingsman/get-git
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get Git",
    "version": "0.1.4",
    "description": "Find misconfigured, web accessible .git directories on websites you browse.",
    "author": "Jack Kingsman ",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Get Git",
        "default_icon": {
            "19": "img\/cloudgit19.png",
            "38": "img\/cloudgit38.png"
        },
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "img\/cloudgit16.png",
        "48": "img\/cloudgit48.png",
        "128": "img\/cloudgit128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "audio\/alert.mp3",
        "css\/alert.css"
    ]
}