1.0.1 • Published 4 years ago

axios-chrome-messaging-adapter2 v1.0.1

Weekly downloads
7
License
-
Repository
-
Last release
4 years ago

For CORS request in chrome extensions,support chrome edge firefox.

Quick start

In your background script:

// register the adapter message hanlder
import 'axios-chrome-messaging-adapter2';

In your content script:

import axios from 'axios'
import { adapter } from 'axios-chrome-messaging-adapter2'

// tell axios to use the adapter for this request
const axiosInstance = axios.create({
  adapter,
  ... // the rest of your configuration :)
})