Interceptor

A chrome extension to modify API response

Qu'est-ce que Interceptor ?

Interceptor est une extension Chrome développée par Mohit Arya, et sa fonction principale est "A chrome extension to modify API response".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Interceptor

Téléchargez les fichiers d'extension Interceptor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Mocks response for fetch and XMLHttpRequest calls.                    

Informations de Base sur l'Extension

Nom Interceptor Interceptor
ID lfjcphcaodhkjlefkomnbokckceemphb
URL Officiel https://chromewebstore.google.com/detail/interceptor/lfjcphcaodhkjlefkomnbokckceemphb
Description A chrome extension to modify API response
Taille du Fichier 180 KB
Nombre d'Installations 133
Version Actuelle 2.6
Dernière Mise à Jour 2023-01-20
Date de Publication 2020-07-02
Évaluation 5.00/5 Total 2 Évaluations
Développeur Mohit Arya
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
        ]
    }
}