Bewertungen für Tab Switch
Tab Switch von Awuthme
16 Bewertungen
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 14311323, vor 6 Monaten
- Bewertet mit 5 von 5 Sternenvon Jasir Alavi, vor 9 Monaten
- Bewertet mit 4 von 5 Sternenvon Andy19823981273, vor einem JahrWorks 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});
})(); - Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 18376868, vor einem Jahr
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 12890933, vor einem Jahrworks for me, great stuff, thanks! (why did mozilla make tab switching so useless)
- Bewertet mit 5 von 5 Sternenvon يحيى, vor einem Jahr
- Bewertet mit 5 von 5 Sternenvon OL3G, vor 2 Jahren
- Bewertet mit 5 von 5 Sternenvon Lydia, vor 3 JahrenDoes 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.
Antwort des Entwicklers
geschrieben am vor 4 JahrenHey Erin, I'm sorry it doesn't work for you.
What OS are you running? Which version of Firefox are you using? I can try to find a solution.- Bewertet mit 5 von 5 Sternenvon sebelk, vor 5 JahrenIt would be nice that these shorcut to be default on FF
- Bewertet mit 5 von 5 Sternenvon Firefox-Benutzer 15902701, vor 5 Jahren
- Bewertet mit 5 von 5 Sternenvon Drew, vor 5 JahrenThis is the greatest Add-On. It should be called "MasterTabs." It truly is a *master* at the simplest thing it does - switching tabs with one hand! It's the ONLY tab switcher with that in mind. If you're always working it going up-and-down and up-and-down your long, long list of Tabs, this is it! One handed HEAVEN! :-p
- Bewertet mit 5 von 5 Sternenvon cb, vor 5 Jahren