Local Cache

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

Local Cache란 무엇입니까?

Local Cache은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cache ajax requests to your local machine, making page loads faster and more predictable."입니다.

확장 프로그램 스크린샷

screenshot

Local Cache 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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",
        ""
    ]
}