Chrome Tasks

This extension replaces the new tab page with an app for managing Google Tasks

Chrome Tasks là gì?

Chrome Tasks là một tiện ích mở rộng Chrome được phát triển bởi http://www.codeboss.se, và tính năng chính của nó là "This extension replaces the new tab page with an app for managing Google Tasks".

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

screenshot

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

Tải xuống các tệp mở rộng Chrome 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

                        Replaces the default new tab page in Chrome with an app for managing your google tasks.                    

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

Tên Chrome Tasks Chrome Tasks
ID kihfdbcaikfhlopdnaiokmogkhbofmgo
URL Chính Thức https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo
Mô tả This extension replaces the new tab page with an app for managing Google Tasks
Kích Thước Tệp 477 KB
Số Lần Cài Đặt 324
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2015-06-10
Ngày Phát Hành 2015-06-10
Đánh Giá 2.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển http://www.codeboss.se
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Tasks",
    "description": "This extension replaces the new tab page with an app for managing Google Tasks",
    "version": "0.1.1",
    "chrome_url_overrides": {
        "newtab": "myPage.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/robots.txt*"
            ],
            "js": [
                "oauth2\/oauth2_inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/www.googleapis.com\/",
        "https:\/\/accounts.google.com\/o\/oauth2\/token"
    ],
    "web_accessible_resources": [
        "oauth2\/oauth2.html"
    ]
}