Add S.Gifts Steam group to footer, and I'll be happy. I miss a quick link to that.
Comment has been collapsed.
I like that Zelgh's puzzle guide is there, guess I can get rid of that bookmark (not that it ever helped my dumb self figure anything out.) Really the only thing I wish is that the FAQ had a drop down menu for Comment Formatting, FAQ, and Guidelines.
Comment has been collapsed.
yeah i saw that one, but this script is way better than having to use the tool manually. (n˘v˘•)¬
Comment has been collapsed.
You can add the links of that script in this one as your script does more or less the same (add links to things). It's better to have it all in a script that having several for doing more or less the same thing.
Btw sgcv.tk is the old domain, please use the not-so-new sgtools.tk until I get a real domain.
This can be a little self-promotion but I do think that a link to the last addition on the tools Last bundled games can be very handy
Comment has been collapsed.
Maybe add a link to this: http://www.steamgifts.com/archive/closed which is otherwise hidden afaik.
Comment has been collapsed.
So it is! I can't see i ton the left I guess because some other script is preventing it from showing. I see it on the bottom though.
thanks.
Comment has been collapsed.
Any way to improve this thing? (adding a textbox to the topbar that lets you find a sg user by their steam id)
// search steam user by id
$(".nav__left-container").append(' \
<div class="sidebar__search-container" style="margin-bottom: 0px; height:29px"> \
<input class="sidebar__search-input is-helper" name="search-query" data-helper-str="Steam user ID..." value="Steam user ID..." type="text" id="suserid"> \
<i class="fa fa-search" id="searchsuser"></i> \
</div> \
');
document.getElementById('searchsuser').onclick = function(){
location.href = 'http://www.steamgifts.com/user/id/' + document.getElementById('suserid').value;
};
Comment has been collapsed.
Ok much easier... Do that the existent search bar looks for the sg user by their steam id if you press the little "magnifying glass" isn't there a shorter word for magnificent glass?
// search steam user by id
document.getElementsByClassName('fa-search')[0].onclick = function(){
location.href = 'http://www.steamgifts.com/user/id/' + document.getElementsByClassName('sidebar__search-input')[0].value;
};
Comment has been collapsed.
This script requires:
* Opera and Safari versions not tested.
Comment has been collapsed.
Thanks, added it to the SG Add-On Registry, trying it out now!
Comment has been collapsed.
Comment has been collapsed.
1,729 Comments - Last post 31 minutes ago by shijisha
16,269 Comments - Last post 58 minutes ago by MarvashMagalli
235 Comments - Last post 1 hour ago by Gorebelly318
14 Comments - Last post 2 hours ago by dragondark18
12 Comments - Last post 12 hours ago by TheRegalMachine
23 Comments - Last post 15 hours ago by PurpleGirly
207 Comments - Last post 16 hours ago by rasLivity
760 Comments - Last post 1 minute ago by MayoSlice
93 Comments - Last post 4 minutes ago by eldonar
104 Comments - Last post 4 minutes ago by FlameB1
0 Comments - Created 14 minutes ago by Geralt28
733 Comments - Last post 22 minutes ago by DarthLonginus
1 Comments - Last post 25 minutes ago by simrafael
16,759 Comments - Last post 26 minutes ago by Riszu
SGLinkies
<< Adds handy links to steamgifts.com top-menu and footer >>
This scripts adds links pointing to pages and threads that unfortunately are hidden or buried in the forums.
INSTALL
(You can also check the source code there)
This script requires:
* Opera and Safari versions not tested.
It will add elements in these menu/places:
Giveaways Menu
Discussions Menu
Support Menu
Help Menu
User Menu
Footer Links
Changelog
1.6.4 - added DLC category; purged old thread links in discussions.
1.6.3 - added change log button under help menu.
1.6.2 - removed faq drop-down menu and extra buttons (added by default on steamgifts).
1.6.1 - updated bundles thread url.
1.6 - added "sg-bookmarks" to discussions menu; added author name to discussions items.
1.5.5 - changed add-on registry url (new thread).
1.5.4 - added "region restricted" category to giveaways menu.
1.5.3 - added "recommended" category to giveaways menu; reordered categories in giveaways menu.
1.5.2 - fixed script for https protocol.
1.5.1 - added "Master List of Ongoing Bundles" button; changed how elements are inserted (won't conflict with other scripts); changed css so it uses colors/backgrounds from sg styles (or any other userstyle than injects them); fixed FAQ-button and FAQ-dropdown-menu borders.
1.4.2 - fixed menu position after SG update.
1.4.1 - removed user list from FAQ menu (it's on the footer).
1.4 - added giveaway filters under giveaway menu; updated sgtools links with new domain.
1.3.2 - fixed discussion link.
1.3.1 - added How to Check Your GA Winners under Discussions.
1.3 - added drop-down menu to the FAQ button; moved User List to FAQ; added Guidelines and Comment Formatting under FAQ.
1.2 - added SGTools under Support; added Guide to Winning under Discussions; added User List under User Menu.
1.1.2 - fixed an issue with color tags
1.1.1 - added SG Group to the footer
Compatibility
"Should" be compatible with anything, since it just adds elements to the page.
It will get messy if another script adds buttons to the top menu (like putting these links inside another button). -_-fixed :3First userscript I ever made, took me almost the whole day since i had no idea what I was doing xD
Anyway, it's just a small tweak that adds convenient shortcuts.
If there are more links that should be added, discuss them here.
Just take into consideration we don't need every thread in a menu, and announcements have their own category so there's ne need for shortcuts (I think).
-v1.4 previews-
Comment has been collapsed.