8000 GitHub - jag34/wildstar-decor-finder: Searches the http://www.wildstar-architecture.com/decor.html site for pictures of decor.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jag34/wildstar-decor-finder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Wildstar Decor Finder

Searches the http://www.wildstar-architecture.com/decor.html site for pictures of decor.

Usage

Simply copy the getItem function along with the four lines below it and paste it to your browser address bar preceeded by "javascript:"

javascript:function getItem(item){ var itemName = $.trim(item.replace(/ +/g, " ")); console.log(itemName); var regEx = new RegExp(itemName, "i"); var aElems = $('#desktop-230634446').children('a'); $.each(aElems, function(idx, val) { var itemTitle = $(val).attr('title'); if ( itemTitle.match(regEx)){ $(val).click() } }); } var item = window.prompt("Please full enter item name", ""); if (item != null){ getItem(item); }

If you copy from here, ensure that when pasting you prepend "javascript:", as some browsers may ignore it.

About

Searches the http://www.wildstar-architecture.com/decor.html site for pictures of decor.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0