mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-02-25 00:59:52 -05:00
17 lines
556 B
JavaScript
17 lines
556 B
JavaScript
//.*flickr.com.*
|
|
setInterval(function() { window.scrollBy(0,50); }, 100);
|
|
|
|
setTimeout(function() {
|
|
a = document.evaluate("//a[contains(@class, 'sn-ico-slideshow')]", document, null, XPathResult.UNORDERED_NODE_ITERATOR_TYPE, null );
|
|
f = a.iterateNext();
|
|
f.click();},
|
|
5000);
|
|
|
|
setTimeout(function() {
|
|
a = document.evaluate("//a[contains(@data-track, 'photo-click')]", document, null, XPathResult.UNORDERED_NODE_ITERATOR_TYPE, null );
|
|
setInterval(function() {
|
|
f = a.iterateNext();
|
|
f.click();
|
|
}, 5000);
|
|
}, 5000);
|