NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name JustDoinMyResearch // @namespace gemsvido // @match *://*/* // @grant none // @version 1.0 // @license MIT // @author gemsvidø // @description Hotkey for playing the PH intro (works unless CORS) // ==/UserScript== "use strict"; const link = "https://api.starfiles.co/direct/d621997f2033"; window.addEventListener("keydown", (async (event) => { if (event.key !== "\\") return; new Audio(link).play(); })); console.log("im just doing my research [READY]")