Cross Domain - CORS

Cross Domain will help you to deal with cross domain - CORS problem. This is tool helpful when face with cross domain issue.

什么是Cross Domain - CORS?

Cross Domain - CORS是由Mai Tan开发的Chrome扩展程序,该扩展的主要功能是“Cross Domain will help you to deal with cross domain - CORS problem. This is tool helpful when face with cross domain issue.”。

扩展截图

screenshot
screenshot
screenshot

下载Cross Domain - CORS扩展crx文件

下载Cross Domain - CORS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Visit out website: https://devratroom.blogspot.com/p/cross-domain-cors-extension.html
Cross Domain will help you to deal with cross domain - Cross-Origin Resource Sharing (CORS) problem. This is a small tool will helpful for web developer and related domain that face with cross domain issue.

List of feature:
- Allow cross domain
- Customize Url pattern base on Javascript Regex
- Allow enable, disable
- Very friendly interface

Under the hood:
This extension allow Cross-Origin Resource Sharing (CORS) by modify header response from server and add more header to allow CORS request:
  Access-control-allow-origin
  Access-control-allow-methods
  Access-control-allow-headers
  Access-control-expose-headers
This is for development purpose only.                    

扩展基本信息

名称 Cross Domain - CORS Cross Domain - CORS
ID mjhpgnbimicffchbodmgfnemoghjakai
官方URL https://chromewebstore.google.com/detail/cross-domain-cors/mjhpgnbimicffchbodmgfnemoghjakai
简介 Cross Domain will help you to deal with cross domain - CORS problem. This is tool helpful when face with cross domain issue.
文件大小 118 KB
安装次数 51,209
当前版本 0.2.3
更新时间 2021-05-23
上架时间 2020-04-28
评分 4.10/5 共58次评分
开发者 Mai Tan
电子邮箱 [email protected]
付费类型 free
扩展官网 https://devratroom.blogspot.com/p/cross-domain-cors-extension.html
帮助页面URL https://devratroom.blogspot.com/p/cross-domain-cors-extension.html
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.2.3",
    "name": "Cross Domain - CORS",
    "description": "Cross Domain will help you to deal with cross domain - CORS problem. This is tool helpful when face with cross domain issue.",
    "icons": {
        "64": "icons\/enable-64.png",
        "128": "icons\/enable-128.png"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/enable-64.png",
        "default_title": "Cross Domain - CORS",
        "default_popup": "popup\/panel.html"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}