Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name findface_list
- // @namespace findface_list
- // @include http://findface.ru/search-result
- // @version 1
- // @grant none
- // ==/UserScript==
- window.onload = function(){
- document.body.innerHTML = "";
- var usrlist = JSON.parse(localStorage.getItem('FF.usersSearchList'));
- usrlist.forEach(function(e){
- document.body.innerHTML += "<a href='https://vk.com/id" + e.user_id.toString() + "'><img src='" + e.photo_max + "'></a><br>";
- });
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement