Local Cache

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

Что такое Local Cache?

Local Cache - это расширение Chrome, разработанное Unknown, и его основная функция - "Cache ajax requests to your local machine, making page loads faster and more predictable.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Local Cache

Скачайте файлы расширений Local Cache в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Local Cache Local Cache
ID bpiehpmcnipgajgjdmalnpobnkfaanlj
Официальный URL https://chromewebstore.google.com/detail/local-cache/bpiehpmcnipgajgjdmalnpobnkfaanlj
Описание Cache ajax requests to your local machine, making page loads faster and more predictable.
Размер файла 30.8 KB
Количество установок 750
Текущая Версия 1.0
Последнее Обновление 2018-01-02
Дата публикации 2018-01-01
Рейтинг 4.40/5 Всего 15 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки 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",
        ""
    ]
}