DotGit
An extension for checking if .git is exposed in visited websites
什麼是DotGit?
DotGit是由davtur19開發的Chrome擴展程式,該擴展的主要功能是“An extension for checking if .git is exposed in visited websites”。
擴展截圖
下載DotGit擴展crx文件
下載DotGit擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
An extension for checking if .git is exposed in visited websites
- Check if a .git/.svn/.hg folder exists for each site you visit
- Check if a .env file exists for each site you visit
- Check if the site is open source (github/gitlab)
- Check if the site has security.txt
- You will be notified when a folder is found
- List of exposed sites found
- Download the entire .git folder in zip format, even if the files are not listed on the site
- View .git/config with one click
- Options for: colors, notifications and downloads
Some checks are turned off by default, open the settings to turn them on
Source code: https://github.com/davtur19/DotGit 擴展基本資訊
| 名稱 | |
| ID | pampamgoihgcedonnphgehgondkhikel |
| 官方網址 | https://chromewebstore.google.com/detail/dotgit/pampamgoihgcedonnphgehgondkhikel |
| 簡介 | An extension for checking if .git is exposed in visited websites |
| 檔案大小 | 145 KB |
| 安裝次數 | 10,400 |
| 目前版本 | 4.8 |
| 更新時間 | 2023-09-20 |
| 上架時間 | 2020-06-16 |
| 評分 | 5.00/5 共 8 次評分 |
| 開發者 | davtur19 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/davtur19/DotGit |
| 說明頁面URL | https://github.com/davtur19/DotGit/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "DotGit",
"version": "4.8",
"description": "An extension for checking if .git is exposed in visited websites",
"icons": {
"16": "icons\/dotgit-16.png",
"32": "icons\/dotgit-32.png",
"48": "icons\/dotgit-48.png",
"96": "icons\/dotgit-96.png",
"128": "icons\/dotgit-128.png"
},
"permissions": [
"*:\/\/*\/*",
"webRequest",
"storage",
"notifications",
"downloads"
],
"background": {
"scripts": [
"dotgit.js",
"lib\/pako_inflate.min.js",
"lib\/jszip.min.js"
]
},
"browser_action": {
"default_title": "DotGit",
"default_popup": "popup\/popup.html"
},
"options_ui": {
"page": "options\/options.html"
}
} | |