Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davtur19 committed Sep 13, 2019
1 parent e2ce2fa commit a0fb889
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
1 change: 1 addition & 0 deletions popup/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ body {
display: flex;
min-height: 100vh;
flex-direction: column;
font-size: 5vw;
}
main {
flex: 1 0 auto;
Expand Down
6 changes: 3 additions & 3 deletions popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand Down

0 comments on commit a0fb889

Please sign in to comment.