Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function newest() {
  2. window.document.querySelectorAll('.dropdown-item')[5].click();  //A. BUTTON NEWEST
  3.  }
  4. setInterval(newest, 5000);
  5. var inspect = document.querySelector('.item-inspect').href; //A.SITE ПОЛУЧИТЬ ИНСПЕКТ ЛИНК
  6.  
  7. document.querySelector(".inspectLinkInput").value = inspect;        //B. ОТПРАВИТЬ ССЫЛКУ
  8. window.document.querySelector(".requestInspectLinkButton").click();
  9.  
  10. var urlimg = document.querySelector('.openImageButton').getAttribute('data-img'); //B. ПОЛУЧИТЬ ЛИНК НА КАРТИНКУ
  11.  
  12. if (urlimg.length){     //ВЫВЕСТИ КАРТИНКУ В ОПОВЕЩЕНИИ. НЕ РАБОТАЛ С ЭТОЙ ЧАСТЬЮ ЕЩЁ
  13.                var notification = new Notification('Notification title', {
  14.       icon: urlimg,
  15.       body: 'look!!!'
  16.     });
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement