Reload All Tabs

Reload All Tabs

Reloads all tabs in a browser window

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reload All Tabs",
  "version": "1.1",
  "description": "Reloads all tabs in a browser window",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs"
  ],
  "action": {},
  "manifest_version": 3,
  "commands": {
    "reload-all-tabs": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space"
      },
      "description": "Reloads all tabs"
    }
  }
}