Tab for Google Tasks
Opens Google Tasks in a new tab. Light and Fast!
O que é Tab for Google Tasks?
Tab for Google Tasks é uma extensão do Chrome desenvolvida por Mostafa Shahverdy, e sua principal característica é "Opens Google Tasks in a new tab. Light and Fast!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab for Google Tasks
Baixe arquivos de extensão Tab for Google Tasks 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
This Chrome extension makes it easy to get to your Google Tasks without having to open Gmail. Just click the extension icon in your toolbar and your Tasks will open in a new tab. With this extension, you can: - Stay organized and productive by keeping your Tasks separate from your Gmail. - Never miss a Task by having your Tasks open in a new tab that you can easily access. - Be more productive by being able to focus on your Tasks without being distracted by your Gmail.
Informações Básicas da Extensão
Nome | Tab for Google Tasks |
ID | pcmdjgpplgkpbkneadbpbjljmidomjco |
URL Oficial | https://chromewebstore.google.com/detail/tab-for-google-tasks/pcmdjgpplgkpbkneadbpbjljmidomjco |
Descrição | Opens Google Tasks in a new tab. Light and Fast! |
Tamanho do Arquivo | 60.69 KB |
Contagem de Instalações | 240 |
Versão Atual | 0.1 |
Última Atualização | 2023-03-30 |
Data de Publicação | 2023-03-30 |
Desenvolvedor | Mostafa Shahverdy |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/shahverd/tab_for_googletasks |
URL da Página de Ajuda | https://github.com/shahverd/tab_for_googletasks/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1", "homepage_url": "https:\/\/github.com\/shahverd\/tab_for_googletasks", "name": "__MSG_ext_name__", "description": "__MSG_ext_description__", "author": "Mostafa Shahverdy", "manifest_version": 3, "default_locale": "en", "permissions": [], "host_permissions": [ "https:\/\/tasks.google.com\/*\/" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/tasks.google.com\/embed\/list\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "action": { "default_icon": { "128": "tasks128.png" } }, "icons": { "128": "tasks128.png" } } |