Created
October 3, 2023 17:29
-
-
Save Plasmoxy/bf0c9207ff1d3eb2e27bc4fe65140c0b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name pmxy-bilingualmanga-shortcuts | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match kguj2saaxu2qidie3ytuklhlxwcy2anw42lgsbvpdqgjxtd6kofsmfid.onion/* | |
// @match wh2e6q5b6nhz6fq4zytbtlbc2kma5lqsdfzw7w4yfga7yjytvxdq7nyd.onion/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=bilingualmanga.net | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.addEventListener('keydown', (e) => { | |
if (e.keyCode === 221) { | |
document.querySelector('#langb > *').click() | |
} | |
}) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment