Greasy Fork is available in English.

Dilbert hotkeys

Adds hotkeys for easier navigation on dilbert.com

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Dilbert hotkeys
// @namespace    Danielv123
// @version      1.0
// @description  Adds hotkeys for easier navigation on dilbert.com
// @author       You
// @match        http://dilbert.com/strip/*
// @grant        none
// @require      https://greasyfork.org/scripts/7927-mousetrap/code/Mousetrap.js?version=35548
// ==/UserScript==

Mousetrap.bind("right", ()=>{
    let button = document.querySelector(".nav-comic.nav-right");
    if(button) button.click();
});

Mousetrap.bind("left", ()=>{
    let button = document.querySelector(".nav-comic.nav-left");
    if(button) button.click();
});