right click + scroll up/down == left/right

useful for any site with galleries, hold right click and scroll to cycle images

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name        right click + scroll up/down == left/right
// @match       https://twitter.com/*
// @version     0.1
// @author      f-carraro
// @description useful for any site with galleries, hold right click and scroll to cycle images
// @namespace https://greasyfork.org/users/699847
// ==/UserScript==

var hold = false;
var didsomething = false;

window.addEventListener("mousedown", ({button}) => {
    if (button === 2) { // right click
        hold = true;
    }
});

window.addEventListener("mouseup", ({button}) => {
    if (button === 2) {
        hold = false;
    }
});

window.addEventListener("wheel", e=>{
    if (hold){
        e.preventDefault;
        if (e.deltaY < 0){
            sendKey(37); 
        } else {
            sendKey(39);  
        }
        didsomething = true;
    }
});

window.addEventListener('contextmenu', e=>{
    if (didsomething){
        e.preventDefault();
    }
    didsomething=false;
});

function sendKey(code){
    const ke = new KeyboardEvent("keydown", {bubbles: true, cancelable: true, keyCode: code});
    document.dispatchEvent(ke);
}