2012年11月29日 星期四

[chrome]get your all tab url and title extensions


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;
}


沒有留言:

張貼留言