Advertisement
Guest User

Untitled

a guest
Apr 27th, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. // ==UserScript==
  2. // @name findface_list
  3. // @namespace findface_list
  4. // @include http://findface.ru/search-result
  5. // @version 1
  6. // @grant none
  7. // ==/UserScript==
  8.  
  9. window.onload = function(){
  10. document.body.innerHTML = "";
  11. var usrlist = JSON.parse(localStorage.getItem('FF.usersSearchList'));
  12. usrlist.forEach(function(e){
  13. document.body.innerHTML += "<a href='https://vk.com/id" + e.user_id.toString() + "'><img src='" + e.photo_max + "'></a><br>";
  14. });
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement