Added firefox version

This commit is contained in:
z0ccc 2021-06-29 15:43:30 -04:00
parent fb41529c9c
commit 0bfdf0bdc7
3 changed files with 37 additions and 1 deletions

31
firefox/manifest.json Normal file
View file

@ -0,0 +1,31 @@
{
"name": "Vytal",
"description": "An Extension To Show You What Trackers See",
"manifest_version": 2,
"version": "1.0.0",
"permissions": ["storage"],
"icons": {
"16": "icon_16.png",
"32": "icon_32.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon_16.png",
"32": "icon_32.png",
"48": "icon_48.png",
"128": "icon_128.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"browser_specific_settings": {
"gecko": {
"id": "vytal@example.com"
}
}
}

View file

@ -6,6 +6,8 @@
--navbar: #FBFCFC; --navbar: #FBFCFC;
--icon: #AAB7B8; --icon: #AAB7B8;
--border: #F0F3F4; --border: #F0F3F4;
scrollbar-color: var(--scrollbar) !important;
scrollbar-width: thin !important;
} }
body { body {
@ -16,8 +18,11 @@ body {
width: 400px; width: 400px;
margin: 0; margin: 0;
overflow: overlay; overflow: overlay;
overflow-x: hidden;
font-family: "Segoe UI", Tahoma, sans-serif;
} }
.navIcon { .navIcon {
color: var(--icon); color: var(--icon);
cursor: pointer; cursor: pointer;
@ -94,4 +99,4 @@ td:first-child {
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: var(--scrollbar); background: var(--scrollbar);
border-radius: 2px; border-radius: 2px;
} }