cronTab
Open the specified URL periodically.
What is cronTab?
cronTab is a Chrome extension developed by Oktasoft, and its main feature is "Open the specified URL periodically.".
Extension Screenshots
Download cronTab Extension CRX File
Download cronTab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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."
Extension Basic Information
Name | cronTab |
ID | dfhpfenocaacimnhheepifmlklfephpn |
Official URL | https://chromewebstore.google.com/detail/crontab/dfhpfenocaacimnhheepifmlklfephpn |
Description | Open the specified URL periodically. |
File Size | 17.33 KB |
Installation Count | 1,323 |
Current Version | 1.0.1 |
Last Updated | 2022-06-22 |
Publish Date | 2019-01-25 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Oktasoft |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |