Suspend tabs

Free up your device's memory and speed up your browsing on Google Chrome by suspend open tabs
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": 3,
  "name": "Suspend tabs",
  "description": "Free up your device's memory and speed up your browsing on Google Chrome by suspend open tabs",
  "version": "1.4",
  "icons": {
    "128": "icone/icone_128.png"
  },
  "action": {
    "default_popup": "popExtension/popExtension.html"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "options_ui": {
    "page": "Optinal/index.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "Optinal/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}