Auto Reload IDT

Refresh automatically pages on a selected interval of seconds or specific time.

Auto Reload IDT란 무엇입니까?

Auto Reload IDT은(는) Giovani Silva에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Refresh automatically pages on a selected interval of seconds or specific time."입니다.

확장 프로그램 스크린샷

screenshot

Auto Reload IDT 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Refresh automatically pages on a selected interval of seconds or specific time.                    

확장 프로그램 기본 정보

이름 Auto Reload IDT Auto Reload IDT
ID fnkcgkngofnmodlbhmkfkloggnldomng
공식 URL https://chrome.google.com/webstore/detail/auto-reload-idt/fnkcgkngofnmodlbhmkfkloggnldomng
설명 Refresh automatically pages on a selected interval of seconds or specific time.
파일 크기 47.58 KB
설치 횟수 505
현재 버전 1.0.3
최근 업데이트 2018-06-06
출시 날짜 2018-06-06
평점 4.25/5 총 8 개의 평점
개발자 Giovani Silva
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Reload IDT",
    "description": "Refresh automatically pages on a selected interval of seconds or specific time.",
    "version": "1.0.3",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "storage"
    ],
    "browser_action": {
        "default_icon": "reloadBtn.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/inicialization.js",
                "scripts\/jquery.js",
                "scripts\/script.js"
            ]
        }
    ],
    "icons": {
        "16": "reloadBtn.png",
        "48": "reloadBtn.png",
        "128": "reloadBtn.png"
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}