Interceptor

A chrome extension to modify API response

什么是Interceptor?

Interceptor是由Mohit Arya开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to modify API response”。

扩展截图

screenshot
screenshot
screenshot

下载Interceptor扩展crx文件

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

扩展使用说明

                        Mocks response for fetch and XMLHttpRequest calls.                    

扩展基本信息

名称 Interceptor Interceptor
ID lfjcphcaodhkjlefkomnbokckceemphb
官方URL https://chromewebstore.google.com/detail/interceptor/lfjcphcaodhkjlefkomnbokckceemphb
简介 A chrome extension to modify API response
文件大小 180 KB
安装次数 133
当前版本 2.6
更新时间 2023-01-20
上架时间 2020-07-02
评分 5.00/5 共2次评分
开发者 Mohit Arya
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Interceptor",
    "version": "2.6",
    "description": "A chrome extension to modify API response",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "src\/images\/icon16.png",
        "48": "src\/images\/icon48.png",
        "128": "src\/images\/icon128.png"
    },
    "manifest_version": 2,
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+I",
                "mac": "Command+Shift+I"
            },
            "description": "Opens extension"
        }
    },
    "incognito": "split",
    "browser_action": [],
    "background": {
        "scripts": [
            "src\/utils\/background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/utils\/content-script.js",
                "src\/utils\/container-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "src\/utils\/mocker-script.js",
        "src\/utils\/event-listener-script.js",
        "dist\/index.html",
        "dist\/bundle.js"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.example.com\/*"
        ]
    }
}