Skip to content

Commit

Permalink
Added support for Chrome.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdgregson committed Aug 4, 2021
1 parent e91dd2b commit ddef2c3
Show file tree
Hide file tree
Showing 21 changed files with 1,350 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
*.js
src/ts/*.js
node_modules
Binary file added src/art/browser-guard-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/art/browser-guard-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/art/browser-guard-24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/art/browser-guard-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/art/browser-guard-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/art/browser-guard-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/art/browser-guard-64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions src/css/settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,16 @@
border-top-left-radius: 5px;
}

.tab-2,
.tab-3 {
.firefox .tab-2,
.firefox .tab-3 {
margin-left: -4px;
}

.chrome .tab-2,
.chrome .tab-3 {
margin-left: -3px;
}

.tab-3 {
border-top-right-radius: 5px;
}
Expand Down
1 change: 1 addition & 0 deletions src/html/background.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<title>Browser Guard</title>
<meta charset="utf-8" />
<script src="../lib/browser-polyfill/browser-polyfill.js"></script>
<script src="../ts/config.js"></script>
<script src="../ts/common.js"></script>
<script src="../ts/background.js"></script>
Expand Down
1 change: 1 addition & 0 deletions src/html/blocked.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<link rel="stylesheet" href="../css/common.css" />
<link rel="stylesheet" href="../css/fonts.css" />
<link rel="stylesheet" href="../css/blocked.css" />
<script src="../lib/browser-polyfill/browser-polyfill.js"></script>
<script src="../ts/l10n.js"></script>
<script src="../ts/config.js"></script>
<script src="../ts/common.js"></script>
Expand Down
1 change: 1 addition & 0 deletions src/html/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<link rel="stylesheet" href="../css/common.css" />
<link rel="stylesheet" href="../css/fonts.css" />
<link rel="stylesheet" href="../css/popup.css" />
<script src="../lib/browser-polyfill/browser-polyfill.js"></script>
<script src="../ts/l10n.js"></script>
<script src="../ts/config.js"></script>
<script src="../ts/common.js"></script>
Expand Down
1 change: 1 addition & 0 deletions src/html/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<link rel="stylesheet" href="../css/common.css" />
<link rel="stylesheet" href="../css/fonts.css" />
<link rel="stylesheet" href="../css/settings.css" />
<script src="../lib/browser-polyfill/browser-polyfill.js"></script>
<script src="../ts/l10n.js"></script>
<script src="../ts/config.js"></script>
<script src="../ts/common.js"></script>
Expand Down
Loading

0 comments on commit ddef2c3

Please sign in to comment.