diff --git a/README.md b/README.md index 3a424b8..5477a37 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # DotGit -A Firefox extension to check if .git is exposed in visited websites +An extension to check if .git is exposed in visited websites -![screenshot](https://i.imgur.com/Bu3va8U.png) +![screenshot](hhttps://i.imgur.com/5uuxc3x.png) diff --git a/manifest.json b/manifest.json index 04dccd7..661f18b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "DotGit", - "version": "1.12", + "version": "2.0", "description": "An extension to check if .git is exposed in visited websites", "icons": { "48": "icons/dotgit-48.png", diff --git a/popup/popup.css b/popup/popup.css index 9b74f59..0ba131e 100644 --- a/popup/popup.css +++ b/popup/popup.css @@ -2,6 +2,7 @@ body { display: flex; min-height: 100vh; flex-direction: column; + font-size: 5vw; } main { flex: 1 0 auto; diff --git a/popup/popup.html b/popup/popup.html index 7718f14..6568381 100644 --- a/popup/popup.html +++ b/popup/popup.html @@ -2,7 +2,7 @@ <html> <head> <meta charset="utf-8"> - <link rel="stylesheet" href="materialize.min.css"> + <link rel="stylesheet" href="materialize.min.css" /> <link rel="stylesheet" href="popup.css" /> <script src="popup.js"></script> </head> @@ -18,7 +18,7 @@ <h6>Visited hosts (last 100):</h6> <div class="row green" style="position:absolute; top:220; width:100%"> <h6>.git exposed (last 100):</h6> </div> - <div class="section" style="height:35px"></div> + <div class="section"></div> <ul id="hostsFound"> <li>No data collected yet...</li> </ul> @@ -27,7 +27,7 @@ <h6>.git exposed (last 100):</h6> </div> <footer class="page-footer transparent" style="position:absolute; bottom:0; width:100%"> <div class="center"> - <button onclick="" class="btn waves-effect waves-light green hoverable reset" style="margin-bottom:10px">Reset</button> + <button class="btn waves-effect waves-light green hoverable reset" style="margin-bottom:10px">Reset</button> </div> </footer> </body>