w3schools - Navigate to Next/Previous section using arrow keys!

Use the arrow keys to quickly navigate to the next or previous sections of w3schools.com tutorials ;)

当前为 2025-03-05 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        w3schools - Navigate to Next/Previous section using arrow keys!
// @namespace   Violentmonkey Scripts
// @match       https://www.w3schools.com/*/*
// @grant       none
// @version     1.2
// @author      AvinashReddy3108 (assisted by ChatGPT)
// @license     WTFPL
// @description Use the arrow keys to quickly navigate to the next or previous sections of w3schools.com tutorials ;)
// ==/UserScript==

(function () {
    'use strict';

    document.addEventListener('keydown', function (event) {
        // We don't want to bother you when you're filling a form or typing a large text
        if (event.target.tagName.toLowerCase() === 'input' || event.target.tagName.toLowerCase() === 'textarea') {
            return;
        }

        let container = document.querySelector("div.w3-clear.nextprev");
        if (!container) {
            return;
        }

        let prevButton = container.querySelector("a.w3-left.w3-btn");
        let nextButton = container.querySelector("a.w3-right.w3-btn");

        if (event.key === 'ArrowLeft' && prevButton) {
            // Prevent going away to the home page when pressing the left key at the first section.
            if (prevButton.textContent.trim() !== "❮ Home") {
                window.location.href = prevButton.href;
            }
        } else if (event.key === 'ArrowRight' && nextButton) {
            // We don't want to accidentally go into any external sites using the sneaky "Next" button.
            // ex: Certification exams, etc..
            let currentHost = window.location.hostname;
            let nextHost = new URL(nextButton.href, window.location.href).hostname;

            if (currentHost === nextHost) {
                window.location.href = nextButton.href;
            }
        }
    });
})();