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.
16 Comments - Last post 44 minutes ago by Tenn
9 Comments - Last post 46 minutes ago by Onii01
238 Comments - Last post 1 hour ago by BHTrellis188
386 Comments - Last post 3 hours ago by Bum8ara5h
18 Comments - Last post 4 hours ago by RobbyRatpoison
214 Comments - Last post 4 hours ago by Bentosan
1,736 Comments - Last post 7 hours ago by MBaer
30,540 Comments - Last post 10 minutes ago by J1mmyST
654 Comments - Last post 17 minutes ago by Zolivv
123 Comments - Last post 30 minutes ago by Aldcoran
34 Comments - Last post 30 minutes ago by Auster999
155 Comments - Last post 36 minutes ago by kctan
1,242 Comments - Last post 56 minutes ago by aquatorrent
157 Comments - Last post 57 minutes ago by ArchelonGaming
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.