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;
|
--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;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue