where is google chrome extensions store
~/Library/Application Support/Google/Chrome/Default/Extensions/
you can find the app id maping to dir
function list(tabs) {
  var contents = ''; 
  for (var i = 0; i < tabs.length; i++) {
    contents += tabs[i].title + '\n';
    contents += tabs[i].url + '\n';
  }   
  document.getElementById('url-list').innerHTML = contents;
}     
 


