From b0933f7e4284d961a0f818ffa610759f49a741df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Fri, 30 Jun 2023 12:02:06 +0200 Subject: [PATCH] add firefox no tab instructions --- firefox/README.md | 3 +++ firefox/userChrome.css | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 firefox/README.md create mode 100644 firefox/userChrome.css diff --git a/firefox/README.md b/firefox/README.md new file mode 100644 index 0000000..6c44c70 --- /dev/null +++ b/firefox/README.md @@ -0,0 +1,3 @@ +toolkit.legacyUserProfileCustomizations.stylesheets to true + +cp /chrome/userChrome.css diff --git a/firefox/userChrome.css b/firefox/userChrome.css new file mode 100644 index 0000000..03fb255 --- /dev/null +++ b/firefox/userChrome.css @@ -0,0 +1,10 @@ +/* hides the native tabs */ +#TabsToolbar { + visibility: collapse; +} +#titlebar { + visibility: collapse; +} +#sidebar-header { + visibility: collapse !important; +}