Get Git

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

O que é Get Git?

Get Git é uma extensão do Chrome desenvolvida por Jack Kingsman, e sua principal característica é "Find misconfigured, web accessible .git directories on websites you browse.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Get Git

Baixe arquivos de extensão Get Git no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Get Git Get Git
ID agddmammmnpdglmincfngjfnehmopoln
URL Oficial https://chromewebstore.google.com/detail/get-git/agddmammmnpdglmincfngjfnehmopoln
Descrição Find misconfigured, web accessible .git directories on websites you browse.
Tamanho do Arquivo 173 KB
Contagem de Instalações 326
Versão Atual 0.1.4
Última Atualização 2019-01-20
Data de Publicação 2019-01-20
Classificação 3.17/5 Total de 6 Avaliações
Desenvolvedor Jack Kingsman
Email jack.kingsman+chrome@gmail.com
Tipo de Pagamento free
Site da Extensão https://github.com/jkingsman/get-git
URL da Página de Ajuda https://github.com/jkingsman/get-git
Idiomas Suportados 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"
    ]
}