The Tab Suspender

Suspends inactive tabs after a set time by replacing them with a custom suspended page.
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,
  "name": "The Tab Suspender",
  "version": "1.0",
  "description": "Suspends inactive tabs after a set time by replacing them with a custom suspended page.",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "webNavigation",
    "<all_urls>",
    "notifications"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Tab Suspender Settings",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "96": "icons/icon96.png"
    }
  },
  "web_accessible_resources": [
    "suspended.html"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{669407ff-70f0-4512-a010-ea4530c5e716}"
    }
  }
}