Reload All Tabs

Reload All Tabs

Reload all tabs, reload only tabs with urls and create custom reloading profiles with tons of options.

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.12",
  "description": "Reload all tabs, reload only tabs with urls and create custom reloading profiles with tons of options.",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "contextMenus",
    "tabs"
  ],
  "browser_action": {},
  "icons": {
    "128": "/img/icon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "lodash.js",
      "background.js"
    ],
    "persistent": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+R",
        "mac": "MacCtrl+R",
        "chromeos": "Alt+R",
        "linux": "Alt+R"
      }
    }
  }
}