Examine source code of AIM

Inspect and view changes in AIM 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
{
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_appname__",
  "short_name": "AIM by Redelegant",
  "description": "AIM helps you to stay focused on your work by blocking websites you add for a given amount of time",
  "version": "2.0.0",
  "icons": {
    "16": "icon_active.png",
    "48": "icon_active.png",
    "128": "icon_active.png"
  },
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/background.js"
    ],
    "pages": [
      "html/popup.html"
    ]
  },
  "permissions": [
    "tabs",
    "*://*/*",
    "storage",
    "alarms",
    "notifications"
  ],
  "browser_action": {
    "default_icon": "icon_inactive.png",
    "default_popup": "html/popup.html"
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": false,
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}