eHarmony Chrome Extension

Clock In/Out from chrome extension
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": "eHarmony Chrome Extension",
  "version": "1.3",
  "description": "Clock In/Out from chrome extension",
  "permissions": [
    "declarativeContent",
    "storage",
    "http://*/",
    "https://*/",
    "alarms",
    "activeTab"
  ],
  "options_page": "src/settings.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "src/images/icons25.png",
      "32": "src/images/icons25.png",
      "48": "src/images/icons25.png",
      "128": "src/images/icons25.png"
    }
  },
  "icons": {
    "16": "src/images/icons25.png",
    "32": "src/images/icons25.png",
    "48": "src/images/icons25.png",
    "128": "src/images/icons25.png"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/scripts/content.js"
      ]
    }
  ]
}