Tab for Google Tasks
Opens Google Tasks in a new tab. Light and Fast!
Qu'est-ce que Tab for Google Tasks ?
Tab for Google Tasks est une extension Chrome développée par Mostafa Shahverdy, et sa fonction principale est "Opens Google Tasks in a new tab. Light and Fast!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab for Google Tasks
Téléchargez les fichiers d'extension Tab for Google Tasks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Tab for Google Tasks |
ID | pcmdjgpplgkpbkneadbpbjljmidomjco |
URL Officiel | https://chromewebstore.google.com/detail/tab-for-google-tasks/pcmdjgpplgkpbkneadbpbjljmidomjco |
Description | Opens Google Tasks in a new tab. Light and Fast! |
Taille du Fichier | 60.69 KB |
Nombre d'Installations | 240 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2023-03-30 |
Date de Publication | 2023-03-30 |
Développeur | Mostafa Shahverdy |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/shahverd/tab_for_googletasks |
URL de la Page d'Aide | https://github.com/shahverd/tab_for_googletasks/issues |
Langues Prises en Charge | 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" } } |