I\'m trying my first step into the magical world of Chrome Extensions. Now i\'ve build up my manifest trying to load jquery.
{ \"name\": \"Test Extension
$.("#test").html("Foo!");
should be
$("#test").html("Foo!");
The error you are getting is consistent with this part of the code being incorrect.