Also, for you more script literate people...Anyone know how to get autoplay to work on John Doe's again? Mine stopped working...this is the code I have.
// ==UserScript==
//
@Name john doe
// @version 1.0
// @description autoselect
// @include
https://www.google.com/*
// @grant none
// @require
https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
$('input[value="PLAYABLE"]').eq(0).click();
$('input[value="ok"]').eq(0).click();
$('input[value="FOREIGN"]').eq(0).click();
$('input[value="FOREIGN"]').eq(1).click();
$('input[value="ok"]').eq(1).click();
$('input[value="NOT_SENSITIVE"]').eq(0).click();
setTimeout(function(){
$('iframe').attr('src',$('iframe').attr('src') + '&autoplay=1');
},300);