You can read here CDN / Google Load Delivery and how to get the latest version, and here to see which libraries are currently supported .
EXT js 3 (+) , 4 , . , , Google "" .
<script src="http://www.google.com/jsapi"></script>
<script>
google.load("ext-core", "4");
google.setOnLoadCallback(function() {
$.getJSON("http://ajax.googleapis.com/ajax/services/search/web?q=google&;v=1.0&;callback=?",
function (data) {
if (data.responseDate.results &&
data.responseDate.results.length>0) {
renderResults(data.responseDate.results);
}
});
});
</script>