Examine source code of Tab Away

Inspect and view changes in Tab Away 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",
  "manifest_version": 2,
  "version": "1.0.2",
  "name": "Tab Away",
  "description": "Place your tabs in a convenient list to reduce tab clutter and memory usage",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "event.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Tabs",
    "default_icon": {
      "16": "icons/popup_icon16.png",
      "19": "icons/popup_icon19.png",
      "24": "icons/popup_icon24.png",
      "32": "icons/popup_icon32.png",
      "38": "icons/popup_icon38.png"
    },
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "storage",
    "alarms",
    "history"
  ]
}