Last active
March 17, 2020 13:29
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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