/*
* @title GeoGuessr Solver
* @description my bookmarklet
* @include http://*
* @license MIT License
* @require http://code.jquery.com/jquery-2.0.3.min.js
*/
(function() {
var ll = $("script").filter(function() {
return $(this).attr("src") && $(this).attr("src").match(/^http:\/\/cbk0.googleapis.com\/cbk/)
}).attr("src").match("ll=([^&]*)&")[1].split("%2C");
console.log(ll);
})()