GeoGuessr Solver

    @@ -10,6 +10,6 @@ (function() { var ll = $("script").filter(function() { return $(this).attr("src") && $(this).attr("src").match(/^http:\/\/cbk0.googleapis.com\/cbk/) - }).attr("src").split("ll=")[1].split("&")[0].split("%2C"); + }).attr("src").match("ll=([^&]*)&")[1].split("%2C"); console.log(ll); })()
  • /*
     * @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);
    })()
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/07/18 18:48:36 - 2013-07-18
  2. 2013/07/18 17:51:10 - 2013-07-18
  3. 2013/07/18 17:50:36 - 2013-07-18