Reload All Tabs

Reload All Tabs

This extension reloads all tabs in the active window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reload All Tabs",
  "description": "This extension reloads all tabs in the active window.",
  "version": "1.0",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+R"
      },
      "description": "Reload all tabs"
    }
  },
  "permissions": [
    "tabs",
    "background"
  ]
}