CORS Helper

CORS Helper

Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CORS Helper",
  "description": "Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.",
  "version": "1.2.2",
  "homepage_url": "https://github.com/jhrxx/CORS-Chrome-extension",
  "default_locale": "en_US",
  "browser_action": {
    "default_icon": "off.png",
    "default_popup": "popup.html",
    "default_title": "Cross-Origin Settings"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "storage",
    "webRequest",
    "<all_urls>",
    "webRequestBlocking"
  ]
}