Chrome Tasks

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

What is Chrome Tasks?

Chrome Tasks is a Chrome extension developed by http://www.codeboss.se, and its main feature is "This extension replaces the new tab page with an app for managing Google Tasks".

Extension Screenshots

screenshot

Download Chrome Tasks Extension CRX File

Download Chrome Tasks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Chrome Tasks Chrome Tasks
ID kihfdbcaikfhlopdnaiokmogkhbofmgo
Official URL https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo
Description This extension replaces the new tab page with an app for managing Google Tasks
File Size 477 KB
Installation Count 324
Current Version 0.1.1
Last Updated 2015-06-10
Publish Date 2015-06-10
Rating 2.80/5 Total 5 Ratings
Developer http://www.codeboss.se
Payment Type free
Supported Languages 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"
    ]
}