cronTab
Open the specified URL periodically.
cronTabとは何ですか?
cronTabはOktasoftによって開発されたChromeの拡張機能で、その主な機能は「Open the specified URL periodically.」です。
拡張機能のスクリーンショット
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." 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |