您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Lets you press the shift key to toggle the pencil tool on the crossword.
// ==UserScript== // @name New York Times Crossword - Keyboard shortcut for pencil // @namespace https://mathemaniac.org/ // @version 1.0.0 // @description Lets you press the shift key to toggle the pencil tool on the crossword. // @match https://www.nytimes.com/crosswords/game/* // @copyright 2025, Sebastian Paaske Tørholm // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; document.onkeydown = (e) => { if (e.key === 'Shift') { document.querySelector('button:has(.xwd__toolbar_icon--pencil, .xwd__toolbar_icon--pencil-active)').click(); } };