Tab for Google Tasks
Opens Google Tasks in a new tab. Light and Fast!
Cos'è Tab for Google Tasks?
Tab for Google Tasks è un'estensione di Chrome sviluppata da Mostafa Shahverdy, e la sua funzione principale è "Opens Google Tasks in a new tab. Light and Fast!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tab for Google Tasks
Scarica i file di estensione Tab for Google Tasks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Tab for Google Tasks |
ID | pcmdjgpplgkpbkneadbpbjljmidomjco |
URL Ufficiale | https://chromewebstore.google.com/detail/tab-for-google-tasks/pcmdjgpplgkpbkneadbpbjljmidomjco |
Descrizione | Opens Google Tasks in a new tab. Light and Fast! |
Dimensione del File | 60.69 KB |
Conteggio Installazioni | 240 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2023-03-30 |
Data di Pubblicazione | 2023-03-30 |
Sviluppatore | Mostafa Shahverdy |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/shahverd/tab_for_googletasks |
URL della Pagina di Aiuto | https://github.com/shahverd/tab_for_googletasks/issues |
Lingue Supportate | 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" } } |