Examine source code of Tab Suspender – Free Up RAM & Boost Browser Speed

Inspect and view changes in Tab Suspender – Free Up RAM & Boost Browser Speed 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": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "version": "1.6",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlIY2Pa0bjJANKRYICng81K/bXJXnHkv+9SUXfRJCE4mUW5nLBAGS9Sk6HgOlR3ijah80vVqps/0EKdI+L0JfcnBtEEfrs+a2G92TlLfh7kPwJ/vqdVXWH6bLzUEAbJQh36zoBa0iNBjW3XrbC6rwMFptk20Pvj6NTpCefVpIVhx1g2B3ZGQcVXzsoFoQJeS4VuEhnpWvZR56D1UF3ySLS1pRA9Awr8V1ka/sXtZIuUMJmF17/WwuyShuBbQODJX7ggK8iVBwlm359cHw0IKN40YgniBIFwlIMjkRxNSv8EWydFtykxF4rBxUZtdMdZOCMR9gMZ5yH5P0leseZor8dQIDAQAB",
  "oauth2": {
    "client_id": "179232417308-pqbequbvcogi82tnu39rcqnfgsa41j30.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/spreadsheets"
    ]
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Tab_suspender",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "https://sheets.googleapis.com/v4/spreadsheets/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "suspend.html",
        "suspend.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Open Pop Up"
    }
  }
}