Say I'm writing a greasemonkey/chrome extension script that needs access to a variable that's inside of a closured anonymous method, like so
$(document).ready(function() {
    var goldenTreasure = "Tasty Loins";
}
is there anyway I can get to that goldenTreasure and have me some tasty loins?
 
     
     
     
    