Connecting to DB from a Chrome Extension?

You’ll have to create an intermediary web app that will interface with the Database. Then you can make AJAX calls from the extension to your web app’s API, which will in turn query the database and return results.

Chrome Extension → Web App API → MySQL

More info on Chrome AJAX API here

Leave a Comment