swqa-request

swqa接口测试跨域请求

What is swqa-request?

swqa-request is a Chrome extension developed by zsx411249087, and its main feature is "swqa接口测试跨域请求".

Extension Screenshots

screenshot

Download swqa-request Extension CRX File

Download swqa-request extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        swqa接口测试插件
3.1 支持backgound进行文件上传的功能
3.2 若content-Type为图片或视频时 不返回具体的内容 太大了
3.3 去掉无用的权限
3.4 修复content-type 被encodeURI的问题                    

Extension Basic Information

Name swqa-request swqa-request
ID ljcfldklachdgiohiobmmcfaogcdohlj
Official URL https://chromewebstore.google.com/detail/swqa-request/ljcfldklachdgiohiobmmcfaogcdohlj
Description swqa接口测试跨域请求
File Size 88.32 KB
Installation Count 691
Current Version 3.4
Last Updated 2021-07-26
Publish Date 2019-05-06
Developer zsx411249087
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "swqa-request",
    "description": "swqa\u63a5\u53e3\u6d4b\u8bd5\u8de8\u57df\u8bf7\u6c42",
    "version": "3.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "webRequest",
        "*:\/\/*\/*",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "index.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "response.js"
            ]
        }
    ]
}