Skip to content

Instantly share code, notes, and snippets.

@Plasmoxy
Created October 3, 2023 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Plasmoxy/bf0c9207ff1d3eb2e27bc4fe65140c0b to your computer and use it in GitHub Desktop.
Save Plasmoxy/bf0c9207ff1d3eb2e27bc4fe65140c0b to your computer and use it in GitHub Desktop.
// ==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