Tab for Google Tasks

Opens Google Tasks in a new tab. Light and Fast!

What is Tab for Google Tasks?

Tab for Google Tasks is a Chrome extension developed by Mostafa Shahverdy, and its main feature is "Opens Google Tasks in a new tab. Light and Fast!".

Extension Screenshots

screenshot
screenshot

Download Tab for Google Tasks Extension CRX File

Download Tab for Google Tasks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Tab for Google Tasks Tab for Google Tasks
ID pcmdjgpplgkpbkneadbpbjljmidomjco
Official URL https://chromewebstore.google.com/detail/tab-for-google-tasks/pcmdjgpplgkpbkneadbpbjljmidomjco
Description Opens Google Tasks in a new tab. Light and Fast!
File Size 60.69 KB
Installation Count 240
Current Version 0.1
Last Updated 2023-03-30
Publish Date 2023-03-30
Developer Mostafa Shahverdy
Email [email protected]
Payment Type free
Extension Website https://github.com/shahverd/tab_for_googletasks
Help Page URL https://github.com/shahverd/tab_for_googletasks/issues
Supported Languages 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"
    }
}