Get Git

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

Get Git là gì?

Get Git là một tiện ích mở rộng Chrome được phát triển bởi Jack Kingsman, và tính năng chính của nó là "Find misconfigured, web accessible .git directories on websites you browse.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Get Git

Tải xuống các tệp mở rộng Get Git dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Get Git Get Git
ID agddmammmnpdglmincfngjfnehmopoln
URL Chính Thức https://chromewebstore.google.com/detail/get-git/agddmammmnpdglmincfngjfnehmopoln
Mô tả Find misconfigured, web accessible .git directories on websites you browse.
Kích Thước Tệp 173 KB
Số Lần Cài Đặt 326
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2019-01-20
Ngày Phát Hành 2019-01-20
Đánh Giá 3.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Jack Kingsman
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jkingsman/get-git
URL Trang Trợ Giúp https://github.com/jkingsman/get-git
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}