I\'m new to chrome extensions. I would like to create a simple chrome extension that popup an alert with the title of the current html page. when I\'m performing: ale
ale
You can use the tabs module:
chrome.tabs.getCurrent(function(tab) { alert(tab.title); });