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.
12 Comments - Last post 10 minutes ago by WaxWorm
409 Comments - Last post 15 minutes ago by Seibitsu
79 Comments - Last post 15 minutes ago by Kegfarms
65 Comments - Last post 16 minutes ago by adam1224
0 Comments - Created 29 minutes ago by Chris76de
17,048 Comments - Last post 1 hour ago by tungmapu
219 Comments - Last post 1 hour ago by aragon789
96 Comments - Last post 20 seconds ago by Fragy
81 Comments - Last post 1 minute ago by YummyCore
19 Comments - Last post 4 minutes ago by aonbheannach
37 Comments - Last post 11 minutes ago by somethingcool
494 Comments - Last post 25 minutes ago by Boson
40 Comments - Last post 31 minutes ago by slaveofwant
73 Comments - Last post 38 minutes ago by Kyog
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.