-
-
Save marsnow/67978406dfffee3231c8cf7a2246b9d8 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
| /* | |
| 1) 打開 https://popcat.click | |
| 2) 打開主控台 (F12 / command + options + i) | |
| 3) 複製貼上 + enter | |
| */ | |
| var event = new KeyboardEvent('keydown', { | |
| key: 'g', | |
| ctrlKey: true | |
| }); | |
| setInterval(function(){ | |
| document.dispatchEvent(event); | |
| }, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment