Habit

Habit

Helps you make habits.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Habit",
  "description": "Helps you make habits.",
  "author": "Moin Uddin",
  "manifest_version": 2,
  "version": "0.0.0.1",
  "icons": {
    "16": "assets/img/16.png",
    "32": "assets/img/32.png",
    "64": "assets/img/64.png",
    "128": "assets/img/128.png"
  },
  "options_ui": {
    "page": "habit.html",
    "chrome_style": true
  },
  "permissions": [
    "alarms",
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "assets/js/bg.js"
    ]
  }
}