I know that Google Chrome extension can have some HTML and JavaScript. But I would like to connect it to my server. When the user clicks a button on the extension when he’s navigating a certain URL, the URL is added to the database on the server. Is it possible to implement this functionality?
Share
Yes it is possible. Just add event handlers for when urls are clicked. You can then send the data back to your server asynchronously. Hopefully you are informing your plugin customers that you intend to track all their clicks.
I would recommend using a library like jQuery for this.
You will need a server side language like php or asp to parse the posted url and store it in your database.