Skip to content

Instantly share code, notes, and snippets.

@beppe9000
Last active March 17, 2020 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beppe9000/054c56e82e7c4f059149a4a445543c9c to your computer and use it in GitHub Desktop.
Save beppe9000/054c56e82e7c4f059149a4a445543c9c to your computer and use it in GitHub Desktop.
Selects "Show Me" for all search fields of phonescoop.com search. Copy/paste the code in the devtools js console to use.
(function() { //@see https://stackoverflow.com/a/26573281/3389585
function l(u, i) {
var d = document;
if (!d.getElementById(i)) {
var s = d.createElement('script');
s.src = u;
s.id = i;
d.body.appendChild(s);
}
}
l('//code.jquery.com/jquery-3.2.1.min.js', 'jquery')
})();
setTimeout(function(){jQuery("#content .opt-row input[value=0]").prop("checked", true); alert('done');},10000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment