Examine source code of スケジュールアラート

Inspect and view changes in スケジュールアラート 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",
  "background": {
    "scripts": [
      "moment.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "moment.min.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "スケジュールのアラート。外部との通信は行っていません",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "manifest_version": 2,
  "name": "スケジュールアラート",
  "options_page": "option.html",
  "version": "7.5.5.5",
  "permissions": [
    "notifications",
    "alarms"
  ]
}