I agree, would be a very nice feature indeed 😎
then again no idea how easy/hard it´d be to implement .. but I´m just a potato
Comment has been collapsed.
You can use userscripts to do this kind of simple tweaks.
// ==UserScript==
// @match https://www.steamgifts.com/giveaway/*
// ==/UserScript==
(function() {
'use strict'
const lightboxes = document.getElementsByClassName("lightbox")
if (lightboxes && lightboxes.length)
{
document.addEventListener("keydown", (event) => {
if (event.keyCode === 27 && lightboxes[0].style.display !== "none")
{
const closeIcons = document.getElementsByClassName("lightbox_header_icon--close")
if (closeIcons && closeIcons.length)
{
closeIcons[0].click()
}
}
})
}
})()
Comment has been collapsed.
Hey, just found this topic as i was having the same issue, tried your script in Tampermonkey, but when i try to save it it just pops up with an "Invalid script" message, and nothing more. I've never added something from copy / paste, is there something i forgot ?
Comment has been collapsed.
Sorry, I was too lazy to write the full header, but here it goes:
// ==UserScript==
// @name Please close screenshots by ESC
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Bender takes over the world!
// @author who
// @match https://www.steamgifts.com/*
// @icon https://www.google.com/s2/favicons?domain=steamgifts.com
// @grant none
// ==/UserScript==
Comment has been collapsed.
Do you have other userscripts applied to SteamGifts (e.g., ESGST)?
Comment has been collapsed.
If you use ESGST, you can use its built in option to do this instead:
https://www.steamgifts.com/account/settings/profile?esgst=settings&id=sk_cp
(The ability to close the SteamGifts screenshot overlay was added recently)
Comment has been collapsed.
This is weird, this functionnality is listed as 2.30.1, but when i go to 2.30, it's only "[SG] Search Magnifying Glass Button".
I have tried to activate it, but it doesn't seem to change anything (even esc on the popups after entering a GA doesn't work).
Comment has been collapsed.
You're welcome! Glad to know that my untested code was actually useful to someone.
Comment has been collapsed.
Nice one!
I extended it by adding left/right key navigation:
(function() {
const lightbox = document.getElementsByClassName("lightbox")[0]
document.addEventListener("keydown", (evt) => {
if (lightbox.style.display === "none")
return
if (evt.keyCode === 27)
{
lightbox.getElementsByClassName("lightbox_header_icon--close")[0].click()
}
else if (evt.keyCode === 37 || evt.keyCode === 39)
{
let [idx, count] = lightbox.getElementsByClassName("lightbox_header_description_count")[0]
.textContent.match(/\d+/g).map(x => +x)
idx += (evt.keyCode === 39 ? +1 : -1)
idx = Math.min(Math.max(idx, 1), count)
lightbox.getElementsByClassName("lightbox_thumbnail")[idx-1].click()
}
})
})()
PS: this might interfere with forward/backward skipping when watching the videos but I don't care ;)
Comment has been collapsed.
You're absolutely right, I wish more storefronts (e.g., Steam...) would do this.
document.addEventListener("wheel", (evt) => {
if (lightbox.style.display === "none")
return
const nums = lightbox.getElementsByClassName("lightbox_header_description_count")[0]
.textContent.match(/\d+/g).map(x => parseInt(x, 10))
let idx = nums[0] + (evt.deltaY < 0 ? +1 : -1)
idx = Math.min(Math.max(idx, 1), nums[1])
lightbox.getElementsByClassName("lightbox_thumbnail")[idx-1].click()
})
Comment has been collapsed.
Comment has been collapsed.
97 Comments - Last post 3 minutes ago by pb1
79 Comments - Last post 5 minutes ago by MeguminShiro
1,134 Comments - Last post 7 minutes ago by MeguminShiro
16,630 Comments - Last post 8 minutes ago by Kenruyoh
891 Comments - Last post 9 minutes ago by nhahtdh
52 Comments - Last post 22 minutes ago by freshduke
32 Comments - Last post 1 hour ago by Ekaros
287 Comments - Last post 31 seconds ago by Sergiio
3 Comments - Last post 1 minute ago by miIk
2,875 Comments - Last post 3 minutes ago by Taurtirith
115 Comments - Last post 4 minutes ago by Exodust
280 Comments - Last post 13 minutes ago by aquatorrent
9,849 Comments - Last post 29 minutes ago by septeroc
109 Comments - Last post 30 minutes ago by Swordoffury
When i open giveaway and see screenshots, i want fast close it and press ESC, but its not work =_=
Small help for keyboard active user? =)
Comment has been collapsed.