Chrome Tasks

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

Chrome Tasksとは何ですか?

Chrome Tasksはhttp://www.codeboss.seによって開発されたChromeの拡張機能で、その主な機能は「This extension replaces the new tab page with an app for managing Google Tasks」です。

拡張機能のスクリーンショット

screenshot

Chrome Tasks拡張機能のCRXファイルをダウンロード

Chrome Tasks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Chrome Tasks Chrome Tasks
ID kihfdbcaikfhlopdnaiokmogkhbofmgo
公式URL https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo
説明 This extension replaces the new tab page with an app for managing Google Tasks
ファイルサイズ 477 KB
インストール数 324
現在のバージョン 0.1.1
最終更新日 2015-06-10
公開日 2015-06-10
評価 2.80/5 合計 5 レビュー
開発者 http://www.codeboss.se
支払い方法 free
対応言語 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"
    ]
}