Access-Control-Allow-Credentials: true

Access-Control-Allow-Credentials: true

Adds to response header 'Access-Control-Allow-Credentials: true' for withCredentials access using XMLHTTPRequest

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Access-Control-Allow-Credentials: true",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Adds to response header 'Access-Control-Allow-Credentials: true' for withCredentials access using XMLHTTPRequest",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "off.png",
    "default_title": "Allow-Control-Allow-Origin",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "on.png",
    "off.png"
  ]
}