NewTabTodo

Manage your day to day tasks by simply adding cards inside your browser's new tab
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "version": "0.1.4",
  "name": "NewTabTodo",
  "short_name": "NewTabTodo",
  "description": "Manage your day to day tasks by simply adding cards inside your browser's new tab",
  "homepage_url": "https://newtabtodo.com/",
  "author": "Muhammad Ovi",
  "offline_enabled": true,
  "icons": {
    "16": "img/icons/x16.png",
    "32": "img/icons/x32.png",
    "48": "img/icons/x48.png",
    "128": "img/icons/x128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "assets/js/browser-polyfill.js",
      "assets/js/backgroundScript.js"
    ],
    "persistent": false
  },
  "browser_action": {},
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}