-1

I have chrome extension which will only be available for people within the company I work for. currently all the data of extension is saved in google sheets. now i need to save the data in SQL server. do i need some plugin or how to do the connectivity between SQL and extension. Extension is mainly javascript.

hemant
  • 49
  • 2
  • 4

1 Answers1

2

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

A similar question like yours has been solved, check it out here.

Nam V. Do
  • 630
  • 6
  • 27