views:

23

answers:

1

Hi,

I am new to the world of creating Chrome extensions. My extension will not require any type of UI. I would like the extension to run in the background and take note whenever a new tab is created and when a tab is closed. Later on I'd like the extension to do other things but I'll be happy with just receiving tab "close" and tab "open" notifications.

Any pointers as to where I should start?

Thank you so much! Matty P

A: 

You can start with reading about background pages and Tabs API that allows you to catch those events.

serg
More specifically, the events portion:http://code.google.com/chrome/extensions/dev/tabs.html#events where you define them within your background page.
Mohamed Mansour