cronTab

Open the specified URL periodically.

O que é cronTab?

cronTab é uma extensão do Chrome desenvolvida por Oktasoft, e sua principal característica é "Open the specified URL periodically.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão cronTab

Baixe arquivos de extensão cronTab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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."                    

Informações Básicas da Extensão

Nome cronTab cronTab
ID dfhpfenocaacimnhheepifmlklfephpn
URL Oficial https://chromewebstore.google.com/detail/crontab/dfhpfenocaacimnhheepifmlklfephpn
Descrição Open the specified URL periodically.
Tamanho do Arquivo 17.33 KB
Contagem de Instalações 1,323
Versão Atual 1.0.1
Última Atualização 2022-06-22
Data de Publicação 2019-01-25
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor Oktasoft
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}