From 0bfdf0bdc730d21b1c118dd76ad10e0c812f5a5b Mon Sep 17 00:00:00 2001 From: z0ccc Date: Tue, 29 Jun 2021 15:43:30 -0400 Subject: [PATCH] Added firefox version --- {public => chrome}/manifest.json | 0 firefox/manifest.json | 31 +++++++++++++++++++++++++++++++ src/styles/App.css | 7 ++++++- 3 files changed, 37 insertions(+), 1 deletion(-) rename {public => chrome}/manifest.json (100%) create mode 100644 firefox/manifest.json diff --git a/public/manifest.json b/chrome/manifest.json similarity index 100% rename from public/manifest.json rename to chrome/manifest.json diff --git a/firefox/manifest.json b/firefox/manifest.json new file mode 100644 index 0000000..c6c0ef8 --- /dev/null +++ b/firefox/manifest.json @@ -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" + } + } +} diff --git a/src/styles/App.css b/src/styles/App.css index 8fe7ef4..8c3ade0 100644 --- a/src/styles/App.css +++ b/src/styles/App.css @@ -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; -} \ No newline at end of file +} \ No newline at end of file