Tab for Google Tasks

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

什么是Tab for Google Tasks?

Tab for Google Tasks是由Mostafa Shahverdy开发的Chrome扩展程序,该扩展的主要功能是“Opens Google Tasks in a new tab. Light and Fast!”。

扩展截图

screenshot
screenshot

下载Tab for Google Tasks扩展crx文件

下载Tab for Google Tasks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Tab for Google Tasks Tab for Google Tasks
ID pcmdjgpplgkpbkneadbpbjljmidomjco
官方URL https://chromewebstore.google.com/detail/tab-for-google-tasks/pcmdjgpplgkpbkneadbpbjljmidomjco
简介 Opens Google Tasks in a new tab. Light and Fast!
文件大小 60.69 KB
安装次数 240
当前版本 0.1
更新时间 2023-03-30
上架时间 2023-03-30
开发者 Mostafa Shahverdy
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/shahverd/tab_for_googletasks
帮助页面URL https://github.com/shahverd/tab_for_googletasks/issues
支持的语言 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"
    }
}