Examine source code of To-Do-List

Inspect and view changes in To-Do-List source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "A to-do-list extension which allow user to keep a track of their task with a reminder according to the time set",
  "manifest_version": 2,
  "name": "To-Do-List",
  "version": "2.0",
  "homepage_url": "https://github.com/EngKhong1006/extension.git",
  "browser_action": {
    "default_icon": "icons/main_todo.png",
    "default_title": "To-Do-List",
    "default_popup": "popup/index.html"
  },
  "background": {
    "scripts": [
      "popup/background.js"
    ]
  },
  "permissions": [
    "storage",
    "notifications"
  ]
}