cronTab

Open the specified URL periodically.

cronTab란 무엇입니까?

cronTab은(는) Oktasoft에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open the specified URL periodically."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        cronTab is a Chrome Extension which open the specified URL in a new tab at the specified time.

Format:
minute(0-59) hour(0-23) week(0-6) URL

Aliases:
{sun:0, mon:1, tue:2, wed:3, thu:4, fri:5, sat:6}

Expressions:
*	all values
,	separate values
-	define ranges
/	step values

Example 1:
30 12 * http://example.com
"At 12:30, open example.com."

Example 2:
*/5 9,17 1-5 http://example.net
"At every 5th minute past hour 9 and 17 on every day from Monday through Friday, open example.net."                    

확장 프로그램 기본 정보

이름 cronTab cronTab
ID dfhpfenocaacimnhheepifmlklfephpn
공식 URL https://chromewebstore.google.com/detail/crontab/dfhpfenocaacimnhheepifmlklfephpn
설명 Open the specified URL periodically.
파일 크기 17.33 KB
설치 횟수 1,323
현재 버전 1.0.1
최근 업데이트 2022-06-22
출시 날짜 2019-01-25
평점 5.00/5 총 5 개의 평점
개발자 Oktasoft
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "cronTab",
    "version": "1.0.1",
    "description": "Open the specified URL periodically.",
    "icons": {
        "48": "icons\/cronTab-48.png",
        "96": "icons\/cronTab-96.png",
        "192": "icons\/cronTab-192.png"
    },
    "permissions": [
        "storage",
        "alarms"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/cronTab-16.png",
            "32": "icons\/cronTab-32.png"
        },
        "default_title": "cronTab",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    }
}