cronTab

Open the specified URL periodically.

什麼是cronTab?

cronTab是由Oktasoft開發的Chrome擴展程式,該擴展的主要功能是“Open the specified URL periodically.”。

擴展截圖

screenshot

下載cronTab擴展crx文件

下載cronTab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}