Joomunited cache checker

Check whether or not a page is served by one of the Joomunited's cache extension

Joomunited cache checker란 무엇입니까?

Joomunited cache checker은(는) https://www.joomunited.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check whether or not a page is served by one of the Joomunited's cache extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Joomunited cache checker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        JoomUnited cache checker displays general information (apply to all websites):

- Total page loading time
- Varnish server cache
- When the Varnish cache have been generated (current or previous request)
- Details of the loading time by element: 
>> Waiting server reply
>> Redirect (if any)
>> DNS resolution
>> Connect to server
>> Content sending
>> Reveive
>> Unload time
>> Dom time
>> Load time
----

JoomUnited cache checker displays specific information:

- If the cache have been served using WP Speed of Light WordPress plugin
- If the cache have been served using SpeedCache Joomla extension

Furthermore, you can determine wether the desktop, tablet or mobile cache is served (can be configured in WordPress and joomla extensions). If one of this cache system is in use you got a green symbol, if not it's grey, as simple as that!                    

확장 프로그램 기본 정보

이름 Joomunited cache checker Joomunited cache checker
ID jlcmafhhfghnndpclpnhgknchmoiceao
공식 URL https://chromewebstore.google.com/detail/joomunited-cache-checker/jlcmafhhfghnndpclpnhgknchmoiceao
설명 Check whether or not a page is served by one of the Joomunited's cache extension
파일 크기 22.17 KB
설치 횟수 294
현재 버전 1.1.4
최근 업데이트 2019-04-17
출시 날짜 2019-04-17
평점 5.00/5 총 3 개의 평점
개발자 https://www.joomunited.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.joomunited.com
도움말 페이지 URL https://www.joomunited.com/support/pre-sales-forum/categories/wp-speed-of-light/pre-sale-questions-about-wp-speed-of-light
개인정보 보호 정책 페이지 URL https://www.joomunited.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Joomunited cache checker",
    "description": "Check whether or not a page is served by one of the Joomunited's cache extension",
    "version": "1.1.4",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "more.html",
        "default_title": "Show more"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "timer.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ]
}