DotGit
An extension for checking if .git is exposed in visited websites
Что такое DotGit?
DotGit - это расширение Chrome, разработанное davtur19, и его основная функция - "An extension for checking if .git is exposed in visited websites".
Снимки экрана расширения
Скачать файл CRX расширения DotGit
Скачайте файлы расширений 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
Основная информация о расширении
Название | DotGit |
ID | pampamgoihgcedonnphgehgondkhikel |
Официальный URL | 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" } } |