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
官方網址 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"
    }
}