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
Eメール [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\/*"
        ]
    }
}