Interceptor

A chrome extension to modify API response

Co je Interceptor?

Interceptor je rozšíření Chrome vyvinuté Mohit Arya, a jeho hlavní funkcí je „A chrome extension to modify API response“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Interceptor

Stáhněte si soubory rozšíření Interceptor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Mocks response for fetch and XMLHttpRequest calls.                    

Základní Informace o Rozšíření

Název Interceptor Interceptor
ID lfjcphcaodhkjlefkomnbokckceemphb
Oficiální URL https://chromewebstore.google.com/detail/interceptor/lfjcphcaodhkjlefkomnbokckceemphb
Popis A chrome extension to modify API response
Velikost souboru 180 KB
Počet instalací 133
Aktuální Verze 2.6
Poslední Aktualizace 2023-01-20
Datum Vydání 2020-07-02
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Mohit Arya
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/*"
        ]
    }
}