Chrome Tasks

Chrome Tasks

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

Merlin
Additional files are visible only to premium users

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"
  ]
}