Local Cache

Cache ajax requests to your local machine, making page loads faster and more predictable.

O que é Local Cache?

Local Cache é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Cache ajax requests to your local machine, making page loads faster and more predictable.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Local Cache

Baixe arquivos de extensão Local Cache 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

                        This is a lightweight, configurable extension that will cache responses for ajax requests to your machine, making future page loads faster and more reliable. This is great when you are demoing your ajax heavy website and want to ensure a smooth demo. Also, if you are a front end developer working with unstable or slow data backends, this extension will save you a ton of time and help you keep your momentum.                    

Informações Básicas da Extensão

Nome Local Cache Local Cache
ID bpiehpmcnipgajgjdmalnpobnkfaanlj
URL Oficial https://chromewebstore.google.com/detail/local-cache/bpiehpmcnipgajgjdmalnpobnkfaanlj
Descrição Cache ajax requests to your local machine, making page loads faster and more predictable.
Tamanho do Arquivo 30.8 KB
Contagem de Instalações 750
Versão Atual 1.0
Última Atualização 2018-01-02
Data de Publicação 2018-01-01
Classificação 4.40/5 Total de 15 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Local Cache",
    "description": "Cache ajax requests to your local machine, making page loads faster and more predictable.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        ""
    ]
}