Examine source code of Lean Tabs

Inspect and view changes in Lean Tabs 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
{
  "version": "1.0",
  "manifest_version": 2,
  "name": "Lean Tabs",
  "description": "Set a limit to the maximum number of tabs that can be opened. Save RAM, Increase Productivity",
  "icons": {
    "32": "icons/32Icon.png"
  },
  "browser_action": {
    "default_icon": "icons/32Icon.png",
    "default_title": "Limit your tabs",
    "default_popup": "popup/limit.html"
  },
  "permissions": [
    "tabs",
    "background"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}