├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CSS tweaks ├── Bookmarks │ ├── Autohide-bookmarks-toolbar.as.css │ ├── Bookmarks-on-fullscreen.as.css │ ├── Multirow-bookmarks.as.css │ └── README.md ├── Context menus │ ├── Context-menu-commands.as.css │ ├── Menu-icons.as.css │ └── README.md ├── README.md ├── Sidebar │ ├── README.md │ └── Resizable-Sidebar.as.css ├── Tabs │ ├── Always-show-sound-icon-when-playing.as.css │ ├── Post-tabs-space-resizing.as.css │ ├── README.md │ ├── Rounded-connected-tabs.as.css │ ├── Tab-close-button-always-visible.as.css │ ├── Tab-close-button-only-on-hover.as.css │ ├── Tab-separators.as.css │ ├── Tab-state-coloring.as.css │ ├── Tabs-below-Menu-overTabs.as.css │ ├── Tabs-below.as.css │ └── setAttribute_unread.uc.js ├── Urlbar │ ├── Megabar-disabled-all-resizing.as.css │ ├── README.md │ ├── Remove-urlbar-icons.as.css │ └── Urlbar-font.as.css ├── userChrome.css └── userContent.css ├── Installers ├── Addons UUID replacer │ ├── Addons-UUID-replacer.py │ ├── Linux.spec │ ├── MacOS.spec │ ├── README.md │ ├── Windows.spec │ └── icon.ico └── Multirow & other functions │ ├── Builder.py │ ├── Linux-old.spec │ ├── Linux.spec │ ├── MacOS.spec │ ├── Platypus-bundling.zsh │ ├── Quantum-Nox-Installer.py │ ├── README.md │ ├── Windows.spec │ ├── create-linux-installer.sh │ ├── create-windows-installer.sh │ ├── functions │ ├── Focus-tab-on-hover.uc.js │ ├── Megabar-disabled-all-resizing.as.css │ ├── Megabar-disabled-until-focus.as.css │ ├── MultiRowTab-scrollable-autohide.uc.js │ ├── MultiRowTab-scrollable.uc.js │ ├── MultiRowTabLiteforFx.uc.js │ ├── Tabs-below-Menu-overTabs.as.css │ ├── Tabs-below.as.css │ └── setAttribute_unread.uc.js │ ├── icon.gif │ ├── icon.icns │ ├── icon.ico │ ├── root │ ├── config.js │ └── defaults │ │ └── pref │ │ └── config-prefs.js │ └── utils │ ├── chrome.manifest │ ├── userChrome.js │ └── xPref.sys.mjs ├── LICENSE ├── Multirow and other functions ├── JS Loader │ ├── Readme.md │ ├── root │ │ ├── config.js │ │ └── defaults │ │ │ └── pref │ │ │ └── config-prefs.js │ └── utils │ │ ├── chrome.manifest │ │ ├── userChrome.js │ │ └── xPref.sys.mjs ├── Multirow tabs │ ├── MultiRowTab-scrollable-autohide.uc.js │ ├── MultiRowTab-scrollable.uc.js │ ├── MultiRowTabLiteforFx.uc.js │ └── Readme.md ├── Other features │ ├── Focus-tab-on-hover.uc.js │ ├── Mac-fullscreen-fix-toolbox-autohide.uc.js │ ├── Navigator-toolbox-autohide.uc.js │ ├── Navigator-toolbox-hide-by-keypress.uc.js │ ├── README.md │ ├── Tabs-on-bottom.uc.js │ └── Test.as.css └── Readme.md └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CSS tweaks/Bookmarks/Autohide-bookmarks-toolbar.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Bookmarks/Autohide-bookmarks-toolbar.as.css -------------------------------------------------------------------------------- /CSS tweaks/Bookmarks/Bookmarks-on-fullscreen.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Bookmarks/Bookmarks-on-fullscreen.as.css -------------------------------------------------------------------------------- /CSS tweaks/Bookmarks/Multirow-bookmarks.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Bookmarks/Multirow-bookmarks.as.css -------------------------------------------------------------------------------- /CSS tweaks/Bookmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Bookmarks/README.md -------------------------------------------------------------------------------- /CSS tweaks/Context menus/Context-menu-commands.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Context menus/Context-menu-commands.as.css -------------------------------------------------------------------------------- /CSS tweaks/Context menus/Menu-icons.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Context menus/Menu-icons.as.css -------------------------------------------------------------------------------- /CSS tweaks/Context menus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Context menus/README.md -------------------------------------------------------------------------------- /CSS tweaks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/README.md -------------------------------------------------------------------------------- /CSS tweaks/Sidebar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Sidebar/README.md -------------------------------------------------------------------------------- /CSS tweaks/Sidebar/Resizable-Sidebar.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Sidebar/Resizable-Sidebar.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/Always-show-sound-icon-when-playing.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/Always-show-sound-icon-when-playing.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/Post-tabs-space-resizing.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/Post-tabs-space-resizing.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/README.md -------------------------------------------------------------------------------- /CSS tweaks/Tabs/Rounded-connected-tabs.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/Rounded-connected-tabs.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/Tab-close-button-always-visible.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/Tab-close-button-always-visible.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/Tab-close-button-only-on-hover.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/Tab-close-button-only-on-hover.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/Tab-separators.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/Tab-separators.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/Tab-state-coloring.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/Tab-state-coloring.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/Tabs-below-Menu-overTabs.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/Tabs-below-Menu-overTabs.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/Tabs-below.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/Tabs-below.as.css -------------------------------------------------------------------------------- /CSS tweaks/Tabs/setAttribute_unread.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Tabs/setAttribute_unread.uc.js -------------------------------------------------------------------------------- /CSS tweaks/Urlbar/Megabar-disabled-all-resizing.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Urlbar/Megabar-disabled-all-resizing.as.css -------------------------------------------------------------------------------- /CSS tweaks/Urlbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Urlbar/README.md -------------------------------------------------------------------------------- /CSS tweaks/Urlbar/Remove-urlbar-icons.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Urlbar/Remove-urlbar-icons.as.css -------------------------------------------------------------------------------- /CSS tweaks/Urlbar/Urlbar-font.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/Urlbar/Urlbar-font.as.css -------------------------------------------------------------------------------- /CSS tweaks/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/userChrome.css -------------------------------------------------------------------------------- /CSS tweaks/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/CSS tweaks/userContent.css -------------------------------------------------------------------------------- /Installers/Addons UUID replacer/Addons-UUID-replacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Addons UUID replacer/Addons-UUID-replacer.py -------------------------------------------------------------------------------- /Installers/Addons UUID replacer/Linux.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Addons UUID replacer/Linux.spec -------------------------------------------------------------------------------- /Installers/Addons UUID replacer/MacOS.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Addons UUID replacer/MacOS.spec -------------------------------------------------------------------------------- /Installers/Addons UUID replacer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Addons UUID replacer/README.md -------------------------------------------------------------------------------- /Installers/Addons UUID replacer/Windows.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Addons UUID replacer/Windows.spec -------------------------------------------------------------------------------- /Installers/Addons UUID replacer/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Addons UUID replacer/icon.ico -------------------------------------------------------------------------------- /Installers/Multirow & other functions/Builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/Builder.py -------------------------------------------------------------------------------- /Installers/Multirow & other functions/Linux-old.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/Linux-old.spec -------------------------------------------------------------------------------- /Installers/Multirow & other functions/Linux.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/Linux.spec -------------------------------------------------------------------------------- /Installers/Multirow & other functions/MacOS.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/MacOS.spec -------------------------------------------------------------------------------- /Installers/Multirow & other functions/Platypus-bundling.zsh: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | ./Multirow-Patcher-Quantum-Nox-Installer-Mac -------------------------------------------------------------------------------- /Installers/Multirow & other functions/Quantum-Nox-Installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/Quantum-Nox-Installer.py -------------------------------------------------------------------------------- /Installers/Multirow & other functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/README.md -------------------------------------------------------------------------------- /Installers/Multirow & other functions/Windows.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/Windows.spec -------------------------------------------------------------------------------- /Installers/Multirow & other functions/create-linux-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/create-linux-installer.sh -------------------------------------------------------------------------------- /Installers/Multirow & other functions/create-windows-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/create-windows-installer.sh -------------------------------------------------------------------------------- /Installers/Multirow & other functions/functions/Focus-tab-on-hover.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/functions/Focus-tab-on-hover.uc.js -------------------------------------------------------------------------------- /Installers/Multirow & other functions/functions/Megabar-disabled-all-resizing.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/functions/Megabar-disabled-all-resizing.as.css -------------------------------------------------------------------------------- /Installers/Multirow & other functions/functions/Megabar-disabled-until-focus.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/functions/Megabar-disabled-until-focus.as.css -------------------------------------------------------------------------------- /Installers/Multirow & other functions/functions/MultiRowTab-scrollable-autohide.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/functions/MultiRowTab-scrollable-autohide.uc.js -------------------------------------------------------------------------------- /Installers/Multirow & other functions/functions/MultiRowTab-scrollable.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/functions/MultiRowTab-scrollable.uc.js -------------------------------------------------------------------------------- /Installers/Multirow & other functions/functions/MultiRowTabLiteforFx.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/functions/MultiRowTabLiteforFx.uc.js -------------------------------------------------------------------------------- /Installers/Multirow & other functions/functions/Tabs-below-Menu-overTabs.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/functions/Tabs-below-Menu-overTabs.as.css -------------------------------------------------------------------------------- /Installers/Multirow & other functions/functions/Tabs-below.as.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/functions/Tabs-below.as.css -------------------------------------------------------------------------------- /Installers/Multirow & other functions/functions/setAttribute_unread.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/functions/setAttribute_unread.uc.js -------------------------------------------------------------------------------- /Installers/Multirow & other functions/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/icon.gif -------------------------------------------------------------------------------- /Installers/Multirow & other functions/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/icon.icns -------------------------------------------------------------------------------- /Installers/Multirow & other functions/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/icon.ico -------------------------------------------------------------------------------- /Installers/Multirow & other functions/root/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/root/config.js -------------------------------------------------------------------------------- /Installers/Multirow & other functions/root/defaults/pref/config-prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/root/defaults/pref/config-prefs.js -------------------------------------------------------------------------------- /Installers/Multirow & other functions/utils/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/utils/chrome.manifest -------------------------------------------------------------------------------- /Installers/Multirow & other functions/utils/userChrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/utils/userChrome.js -------------------------------------------------------------------------------- /Installers/Multirow & other functions/utils/xPref.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Installers/Multirow & other functions/utils/xPref.sys.mjs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/LICENSE -------------------------------------------------------------------------------- /Multirow and other functions/JS Loader/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/JS Loader/Readme.md -------------------------------------------------------------------------------- /Multirow and other functions/JS Loader/root/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/JS Loader/root/config.js -------------------------------------------------------------------------------- /Multirow and other functions/JS Loader/root/defaults/pref/config-prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/JS Loader/root/defaults/pref/config-prefs.js -------------------------------------------------------------------------------- /Multirow and other functions/JS Loader/utils/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/JS Loader/utils/chrome.manifest -------------------------------------------------------------------------------- /Multirow and other functions/JS Loader/utils/userChrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/JS Loader/utils/userChrome.js -------------------------------------------------------------------------------- /Multirow and other functions/JS Loader/utils/xPref.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/JS Loader/utils/xPref.sys.mjs -------------------------------------------------------------------------------- /Multirow and other functions/Multirow tabs/MultiRowTab-scrollable-autohide.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Multirow tabs/MultiRowTab-scrollable-autohide.uc.js -------------------------------------------------------------------------------- /Multirow and other functions/Multirow tabs/MultiRowTab-scrollable.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Multirow tabs/MultiRowTab-scrollable.uc.js -------------------------------------------------------------------------------- /Multirow and other functions/Multirow tabs/MultiRowTabLiteforFx.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Multirow tabs/MultiRowTabLiteforFx.uc.js -------------------------------------------------------------------------------- /Multirow and other functions/Multirow tabs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Multirow tabs/Readme.md -------------------------------------------------------------------------------- /Multirow and other functions/Other features/Focus-tab-on-hover.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Other features/Focus-tab-on-hover.uc.js -------------------------------------------------------------------------------- /Multirow and other functions/Other features/Mac-fullscreen-fix-toolbox-autohide.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Other features/Mac-fullscreen-fix-toolbox-autohide.uc.js -------------------------------------------------------------------------------- /Multirow and other functions/Other features/Navigator-toolbox-autohide.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Other features/Navigator-toolbox-autohide.uc.js -------------------------------------------------------------------------------- /Multirow and other functions/Other features/Navigator-toolbox-hide-by-keypress.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Other features/Navigator-toolbox-hide-by-keypress.uc.js -------------------------------------------------------------------------------- /Multirow and other functions/Other features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Other features/README.md -------------------------------------------------------------------------------- /Multirow and other functions/Other features/Tabs-on-bottom.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Other features/Tabs-on-bottom.uc.js -------------------------------------------------------------------------------- /Multirow and other functions/Other features/Test.as.css: -------------------------------------------------------------------------------- 1 | *|* {border: 1px solid red !important} -------------------------------------------------------------------------------- /Multirow and other functions/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/Multirow and other functions/Readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Izheil/Quantum-Nox-Firefox-Customizations/HEAD/README.md --------------------------------------------------------------------------------