Tab Switch

Switch tabs using ctrl+left and ctrl+right

Total ratings

4.64 (Rating count: 14)
See reviews for Tab Switch on Firefox Browser Add-ons
Upgrade to see all 15 reviews

User reviews

Recent rating average: 4.50
All time rating average: 4.64
Upgrade to see all 15 reviews

Rating filters

5 star
87% (13)
4 star
7% (1)
3 star
0%
2 star
0%
1 star
7% (1)
Date Author Rating Comment
2024-11-12 Jasir Alavi
2024-08-27 Andy19823981273 Works very well except the add-on interferes with YouTube's keyboard shortcuts. When you use ctrl+(left or right arrow) on Youtube you switch chapters. I've been looking for a solution to this problem but can't find one. I would appreciate any help bc I do really like this add-on. EDIT: Nvm I found a solution. Using Tampermonkey add-on I used the following script so that the Tab Switch add-on works before Youtube notices the shortcut being used. // ==UserScript== // @name Prioritize Tab-Switching over YouTube Shortcuts // @namespace http://tampermonkey.net/ // @version 0.6 // @description Ensure tab-switching extension works without YouTube intercepting the shortcut // @author You // @match *://www.youtube.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // Listen for the keydown event at the capture phase window.addEventListener('keydown', function(event) { // Check if Ctrl key is pressed and if the key is left or right arrow if (event.ctrlKey && (event.key === 'ArrowLeft' || event.key === 'ArrowRight')) { // Prevent YouTube from knowing about this key event event.stopImmediatePropagation(); // Stop YouTube from handling the event // Do not prevent the default action to allow the tab-switching extension to work } }, {capture: true, passive: true}); })();
2024-04-17 Firefox user 18376868
2024-04-09 Firefox user 12890933 works for me, great stuff, thanks! (why did mozilla make tab switching so useless)
2024-03-11 يحيى
2023-03-31 OL3G
2022-12-26 GanJingWorld Gan Jing World is a clean, curated universe and a dynamic, overlapping network of integrated platforms and services. ==> https://www.ganjing.com
2022-07-23 Lydia Does what it says on the tin! I really don't see why Mozilla hasn't implemented this! You are a good man for simplyfying certainly many an ADHD tab collectors' search binge and I appreciate it. Simple and effective.
2021-09-18 Erin Cannot get the extension to work
2021-09-14 Chebattler Works fine. Thanks!
Upgrade to see all 15 reviews