Get Git

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

Get Gitคืออะไร?

Get Git เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jack Kingsman และคุณลักษณะหลักของมันคือ "Find misconfigured, web accessible .git directories on websites you browse."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Get Git

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}