V2EX Browser

使用左右箭头切换不同 id 的主题

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         V2EX Browser
// @namespace    https://iamazing.cn/
// @version      0.1
// @description  使用左右箭头切换不同 id 的主题
// @author       JustSong
// @match        https://www.v2ex.com/t/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function getTopicId() {
        let path = window.location.pathname;
        let matched = path.match(/[0-9][0-9]*/);
        let id = matched[0];
        return parseInt(id);
    }

    function gotoTopic(id) {
        if (typeof id === 'number' && id > 0) {
            let path = "/t/" + id;
            window.location.pathname = path;
        }
    }

    window.addEventListener("keydown", function(e) {
        let id = getTopicId();
        if (e.key === "ArrowLeft") {
            id--;
        } else if (e.key === "ArrowRight") {
            id++;
        } else return;
        gotoTopic(id);
    });
})();