Add shortcuts for Instagram Next/Prev buttons
当前为
// ==UserScript== // @name Instagram Next/Prev Shortcut // @namespace https://github.com/gslin/instagram-next-prev-shortcut-userscript // @match https://www.instagram.com/* // @grant none // @version 0.20230608.0 // @author Gea-Suan Lin <[email protected]> // @description Add shortcuts for Instagram Next/Prev buttons // @license MIT // ==/UserScript== (() => { document.addEventListener('keyup', function(event) { if ('input' === document.activeElement.tagName.toLowerCase()) { return; } if ('<' === event.key) { const el = document.querySelector('div[role="dialog"] button[aria-label="Go Back"]'); el?.click(); return; } if ('>' === event.key) { const el = document.querySelector('div[role="dialog"] button[aria-label="Next"]'); el?.click(); return; } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址