diff options
Diffstat (limited to 'modules/firefox.home/chrome')
| -rw-r--r-- | modules/firefox.home/chrome/globalKeybindings.uc.js | 2 | ||||
| -rw-r--r-- | modules/firefox.home/chrome/userContent.css | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/modules/firefox.home/chrome/globalKeybindings.uc.js b/modules/firefox.home/chrome/globalKeybindings.uc.js index 4ad35da..cd6a420 100644 --- a/modules/firefox.home/chrome/globalKeybindings.uc.js +++ b/modules/firefox.home/chrome/globalKeybindings.uc.js @@ -33,6 +33,8 @@ ], }); + // Restart firefox: Services.startup.quit(Services.startup.eForceQuit | Services.startup.eRestart) + const nextTab = () => () => updateTabIndex((n, len) => (n + 1) % len); const prevTab = () => () => updateTabIndex((n, len) => n === 0 ? len - 1 : n - 1); const tabIndex = idx => () => updateTabIndex((_n, _len) => idx) diff --git a/modules/firefox.home/chrome/userContent.css b/modules/firefox.home/chrome/userContent.css index b7361e8..b20f349 100644 --- a/modules/firefox.home/chrome/userContent.css +++ b/modules/firefox.home/chrome/userContent.css @@ -45,5 +45,9 @@ .header { font-size: 1rem !important; } + + .result-sponsored { + display: none !important; + } } |
