⪼ Made with 💜 by Polyglot.
Copy URL or Link
https://www.amazon.com/Segway-Electric-G30LP-Long-range-Lightweight/dp/B08BL4VPDR/ref=sr_1_7?crid=4PJ1N3DWB5F9&keywords=Segway%2BNinebot%2BScooter!%2BE2%2B%26%2BE2&qid=1702269013&sprefix=segway%2Bninebot%2Bscooter%2Be2%2B%26%2Be2%2Caps%2C209&sr=8-7&th=1
Probably should also log when in DEBUG mode
https://www.amazon.com/Segway-Electric-G30LP-Long-range-Lightweight/dp/B08BL4VPDR/ref=sr_1_7
document.addEventListener("keydown", (event) => {
const url = document.location.href.replace(document.location.search, '');
const title = document.title;
if (event.ctrlKey && event.key === "u") {
const template = `${address}`;
navigator.clipboard.writeText(template);
}
if (event.ctrlKey && event.key === "l") {
const template = `[${title}](${url})`;
navigator.clipboard.writeText(template);
}
});