checklist for Google Tasks™

checklist for Google Tasks™

Access and manage all your Google Tasks™ directly in Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "checklist for Google Tasks™",
  "short_name": "checklist",
  "version": "2.8.1",
  "description": "Access and manage all your Google Tasks™ directly in Chrome",
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "minimum_chrome_version": "32",
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "64": "images/icon64.png",
      "128": "images/icon128.png"
    },
    "default_title": "checklist",
    "default_popup": "popup.html"
  },
  "oauth2": {
    "client_id": "679139693812-56f8sa37eqkl7klkshup0fasbp0tfvhh.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/tasks",
      "https://www.googleapis.com/auth/tasks.readonly"
    ]
  },
  "background": {
    "scripts": [
      "lib/jquery.min.js",
      "lib/sugar.js",
      "gtasks.js",
      "memegen.js",
      "lib/gapi-chrome-apps.js",
      "scheduler.js",
      "feeds.js",
      "util.js",
      "options.js",
      "notify.js",
      "background.js"
    ]
  },
  "options_page": "options.html",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    },
    "task-add": {
      "suggested_key": {
        "default": "Ctrl+E",
        "mac": "Command+E"
      },
      "description": "Task this page (today)"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "identity",
    "identity.email",
    "contextMenus",
    "notifications",
    "https://www.googleapis.com/*"
  ]
}