yazdmich

Untitled

Aug 17th, 2014
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // ==UserScript==
  2. // @name My Fancy New Userscript
  3. // @namespace http://use.i.E.your.homepage/
  4. // @version 0.1
  5. // @description enter something useful
  6. // @match http://www.okcupid.com/*
  7. // @copyright 2012+, You
  8. // ==/UserScript==
  9. "use strict";
  10. var matches;
  11. var index;
  12. matches = document.querySelector('#section_matches > ul').getElementsByClassName('match');
  13. for (index = 0; index < matches.length; ++index) {
  14. window.alert(matches[index].getElementsByClassName('profile_image')[0].href);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment