ForceCORS

ForceCORS

Allows forcing Cross-Origin Resource Sharing headers on any desired URL; helpful when accessing remote services from a local host.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ForceCORS",
  "author": "Chris Deely",
  "version": "1.1",
  "description": "Allows forcing Cross-Origin Resource Sharing headers on any desired URL; helpful when accessing remote services from a local host.",
  "homepage_url": "https://github.com/chrisdeely/ForceCORS",
  "icons": {
    "16": "images/Unlock16.png",
    "48": "images/Unlock16.png",
    "128": "images/Unlock16.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "images/Unlock48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options.html",
  "manifest_version": 2
}