cors-plugin

cors-plugin

A simple add-on/plugin to allow developers who might want to make cross origin requests to their APIs from localhost

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "cors-plugin",
  "version": "1.1resigned1",
  "description": "A simple cors plugin",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": "off.png",
    "default_title": "CORS-Plugin",
    "default_popup": "index.html"
  },
  "web_accessible_resources": [
    "on.png",
    "off.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{283b9003-8489-40fd-b212-7928d827513e}"
    }
  }
}