AlkanFan

Untitled

May 8th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. // ==UserScript==
  2. // @name AJ Ghergich Email Finding Helper
  3. // @author Chet Manley
  4. // @version 0.2
  5. // @description Automatically checks email found radiobox, linkifies URL and focuses on the email textbox.
  6. // @include https://www.mturkcontent.com/*
  7. // @require http://code.jquery.com/jquery-latest.min.js
  8. // ==/UserScript==
  9.  
  10. // v0.2, 2013-11-07 Adds a Google search link for "contact <website name>."
  11. // ---------------------------------------------------------------------------
  12. // v0.1, 2013-08-23 Automatically checks email found radiobox, linkifies URL and focuses on the email textbox.
  13. // ---------------------------------------------------------------------------
  14.  
  15. $('form > p > b').append(' - <a href="http://' + $('form > p > b').text().trim() + '" target="_blank">Open link</a> - <a href="https://encrypted.google.com/search?q=contact+' + $('form > p > b').text().trim() + '" target="_blank">Google Search</a>');
  16. $('input[name="Q1Url"]').focus();
  17. $('input[type="radio"]:first').prop('checked', 'true');
Advertisement
Add Comment
Please, Sign In to add comment