Tab for Google Tasks

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

Tab for Google Tasks là gì?

Tab for Google Tasks là một tiện ích mở rộng Chrome được phát triển bởi Mostafa Shahverdy, và tính năng chính của nó là "Opens Google Tasks in a new tab. Light and Fast!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab for Google Tasks

Tải xuống các tệp mở rộng Tab for Google Tasks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab for Google Tasks Tab for Google Tasks
ID pcmdjgpplgkpbkneadbpbjljmidomjco
URL Chính Thức https://chromewebstore.google.com/detail/tab-for-google-tasks/pcmdjgpplgkpbkneadbpbjljmidomjco
Mô tả Opens Google Tasks in a new tab. Light and Fast!
Kích Thước Tệp 60.69 KB
Số Lần Cài Đặt 240
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2023-03-30
Ngày Phát Hành 2023-03-30
Nhà Phát Triển Mostafa Shahverdy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/shahverd/tab_for_googletasks
URL Trang Trợ Giúp https://github.com/shahverd/tab_for_googletasks/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}