This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // paste into console and get a list of the amazon | |
| var urls = {}; | |
| [].slice.apply($$('a')).map(function(a) { | |
| return a.href | |
| }).filter(function(u) { | |
| return /amazon.com/.test(u) | |
| }).map(function(u) { | |
| return u.split('?')[0] | |
| }).forEach(function(u) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('iframe:not(:visible)').remove(); | |
| urls = ['https://edfuh.com', 'https://google.com']; i = 0; | |
| [].slice.call(frames).forEach(function(f){ console.log(f.location.assign(urls[i++])) }) |
OlderNewer