Automatic Tab Opener
Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete
O que é Automatic Tab Opener?
Automatic Tab Opener é uma extensão do Chrome desenvolvida por no0law1, e sua principal característica é "Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Automatic Tab Opener
Baixe arquivos de extensão Automatic Tab Opener 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
Our extension, "Automatic Tab Opener" allows you to automate the opening of multiple URLs based on a cron expression or predefined intervals (e.g., daily, hourly, every minute). Simply input the URLs you want to open and specify the frequency at which they should be opened. The cron expression follows the standard format, with the ability to specify minute, hour, day of the month, month, and day of the week. For example, to open the URLs every day at 8am, you would enter "0 8 * * *". Or, you can choose one of the predefined intervals (e.g., daily, hourly, every minute) from the dropdown menu. The extension will then open the specified URLs at the specified frequency, saving you time and effort in manually opening them yourself. With "Automatic Tab Opener" you can streamline your daily tasks and focus on more important things.
Informações Básicas da Extensão
Nome | Automatic Tab Opener |
ID | hkjobkeceflhccchhjkfofhbcaaaccag |
URL Oficial | https://chromewebstore.google.com/detail/automatic-tab-opener/hkjobkeceflhccchhjkfofhbcaaaccag |
Descrição | Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete |
Tamanho do Arquivo | 24.18 KB |
Contagem de Instalações | 1,820 |
Versão Atual | 0.0.8 |
Última Atualização | 2023-12-08 |
Data de Publicação | 2022-09-13 |
Classificação | 4.00/5 Total de 10 Avaliações |
Desenvolvedor | no0law1 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.instanceof.dev/ |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "developer": { "name": "Nuno Reis", "url": "https:\/\/www.instanceof.dev" }, "name": "Automatic Tab Opener", "description": "Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete", "version": "0.0.8", "minimum_chrome_version": "92", "options_page": "options.html", "background": { "service_worker": "assets\/js\/background.js", "type": "module" }, "action": { "default_popup": "popup.html" }, "permissions": [ "storage", "alarms", "background", "tabs" ], "icons": { "16": "assets\/icons\/icon.png", "32": "assets\/icons\/icon.png", "48": "assets\/icons\/icon.png", "128": "assets\/icons\/icon.png" } } |