To-Do List.

To-Do List.

A Simple To-Do List New-tab Page for Multitaskers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "To-Do List.",
  "description": "A Simple To-Do List New-tab Page for Multitaskers",
  "version": "1.0.4",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "assets/background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "assets/decoy.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon_128.png"
  }
}