Connecting to DB from a Chrome Extension?

后端 未结 1 2013
生来不讨喜
生来不讨喜 2020-11-30 01:02

I am building a chrome extension which will only be available for people within the company I work for. The extension needs input - which can be generated with a simple que

相关标签:
1条回答
  • 2020-11-30 01:21

    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

    0 讨论(0)
提交回复
热议问题