Interceptor

Run web clients without backends by mocking HTTP requests

O que é Interceptor?

Interceptor é uma extensão do Chrome desenvolvida por Codemancers, e sua principal característica é "Run web clients without backends by mocking HTTP requests".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Interceptor

Baixe arquivos de extensão Interceptor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Run web clients without backends by mocking HTTP requests

During development, often times front-end devs have to wait for the back-end devs to offer an API to work on. Even after the API is given, if the front-end team wants a different set of data to work on, they again need to wait for the changes to be made and hosted. We, front-end developers resort to techniques like storing the data in a variable or using mock API’s.

To overcome this, we are working on a browser extension Interceptor, which lets you define your own response, and everytime the browser requests data from a particular URL, returns you with mock data instead of, from the server.                    

Informações Básicas da Extensão

Nome Interceptor Interceptor
ID enenfaicdcfgcnjmiigcjbmlbaoapnen
URL Oficial https://chrome.google.com/webstore/detail/interceptor/enenfaicdcfgcnjmiigcjbmlbaoapnen
Descrição Run web clients without backends by mocking HTTP requests
Tamanho do Arquivo 314 KB
Contagem de Instalações 4,000
Versão Atual 0.3.0
Última Atualização 2019-09-23
Data de Publicação 2019-09-23
Classificação 3.00/5 Total de 22 Avaliações
Desenvolvedor Codemancers
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/code-mancers/interceptor
URL da Página de Ajuda https://github.com/code-mancers/interceptor/issues
URL da Página de Política de Privacidade https://github.com/code-mancers/interceptor/blob/master/Privacy-policy.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Interceptor",
    "description": "Run web clients without backends by mocking HTTP requests",
    "version": "0.3.0",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "lib\/nise.min.js"
    ],
    "browser_action": {
        "default_title": "Interceptor",
        "default_popup": "index.html",
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "webRequest",
        "tabs",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "webNavigation"
    ]
}