Interceptor

A chrome extension to modify API response

Apa itu Interceptor?

Interceptor adalah ekstensi Chrome yang dikembangkan oleh Mohit Arya, dan fitur utamanya adalah "A chrome extension to modify API response".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Interceptor

Unduh file ekstensi Interceptor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Mocks response for fetch and XMLHttpRequest calls.                    

Informasi Dasar Ekstensi

Nama Interceptor Interceptor
ID lfjcphcaodhkjlefkomnbokckceemphb
URL Resmi https://chromewebstore.google.com/detail/interceptor/lfjcphcaodhkjlefkomnbokckceemphb
Deskripsi A chrome extension to modify API response
Ukuran File 180 KB
Jumlah Instalasi 133
Versi Saat Ini 2.6
Terakhir Diperbarui 2023-01-20
Tanggal Publikasi 2020-07-02
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Mohit Arya
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
        ]
    }
}