Examine source code of Alarm

Inspect and view changes in Alarm 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Alarm",
  "description": "Alarm Application",
  "version": "1.0.0",
  "app": {
    "background": {
      "scripts": [
        "./background_js/background.js",
        "./app/js/chrome_notification/notification.js",
        "./app/js/libs/moment.min.js",
        "./app/js/utils/utils.js",
        "./app/js/chrome_alarm/alarm.js"
      ]
    }
  },
  "icons": {
    "16": "./launch_icons/alarm-16.png",
    "24": "./launch_icons/alarm-24.png",
    "32": "./launch_icons/alarm-32.png",
    "48": "./launch_icons/alarm-48.png",
    "64": "./launch_icons/alarm-64.png",
    "72": "./launch_icons/alarm-72.png",
    "96": "./launch_icons/alarm-96.png",
    "128": "./launch_icons/alarm-128.png"
  },
  "permissions": [
    "storage",
    "tts",
    "notifications",
    "alarms"
  ]
}