Added firefox version
This commit is contained in:
parent
fb41529c9c
commit
0bfdf0bdc7
3 changed files with 37 additions and 1 deletions
31
firefox/manifest.json
Normal file
31
firefox/manifest.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -6,6 +6,8 @@
|
|||
--navbar: #FBFCFC;
|
||||
--icon: #AAB7B8;
|
||||
--border: #F0F3F4;
|
||||
scrollbar-color: var(--scrollbar) !important;
|
||||
scrollbar-width: thin !important;
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
@ -16,8 +18,11 @@ body {
|
|||
width: 400px;
|
||||
margin: 0;
|
||||
overflow: overlay;
|
||||
overflow-x: hidden;
|
||||
font-family: "Segoe UI", Tahoma, sans-serif;
|
||||
}
|
||||
|
||||
|
||||
.navIcon {
|
||||
color: var(--icon);
|
||||
cursor: pointer;
|
||||
|
|
@ -94,4 +99,4 @@ td:first-child {
|
|||
::-webkit-scrollbar-thumb {
|
||||
background: var(--scrollbar);
|
||||
border-radius: 2px;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue