Smarter Tab

Smarter Tab will close your inactive tabs automatically for you, free your computer's memory, enable sorting tabs, and much more!
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": "Smarter Tab",
  "version": "0.4.3",
  "manifest_version": 2,
  "description": "Smarter Tab will close your inactive tabs automatically for you, free your computer's memory, enable sorting tabs, and much more!",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "./src/bg/background.js"
    ]
  },
  "options_page": "src/extension-page/auto-closed-history.html",
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Smarter Tab",
    "default_popup": "src/browser-action/browser-action.html"
  },
  "permissions": [
    "alarms",
    "background",
    "storage",
    "tabs"
  ]
}