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
官方網址 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
電子郵箱 [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"
    ]
}