hub_navigator

Website Navigator With Arrow Key Press

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         hub_navigator
// @namespace    http://your.homepage/
// @version      1.0
// @description Website Navigator With Arrow Key Press
// @match      https://*.*/*
// ==/UserScript==
function updatePageNumber(increment) {
    const url = window.location.href;

    // Use regex to find the last numeric sequence in the URL
    const regex = /(\d+)(?!.*\d)/;
    const match = url.match(regex);

    if (match) {
        // Extract the matched number
        let number = parseInt(match[0]);

        // Adjust the number based on the increment (positive for next, negative for previous)
        number += increment;

        // Replace the old number in the URL with the updated number
        const updatedUrl = url.replace(regex, number.toString());

        // Log the updated URL to the console
        console.log('Updated URL:', updatedUrl);

        // Navigate to the updated URL
        window.open(updatedUrl, "_self");
    } else {
        console.log("No number found in the URL to increment/decrement.");
    }
}

function checkKeyPressed(e) {
    // Right arrow key for increment
    if (e.keyCode === 39) {
        updatePageNumber(1); // Increment page number
    }
    // Left arrow key for decrement
    if (e.keyCode === 37) {
        updatePageNumber(-1); // Decrement page number
    }
}

// Listen for keydown events
window.addEventListener("keydown", checkKeyPressed, false);