Refresh 'Em All

Refresh 'Em All

Refresh all tabs in Current Window. Whopping seven lines of code — no crap.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Refresh 'Em All",
  "version": "0.9.2",
  "description": "Refresh all tabs in Current Window. Whopping seven lines of code — no crap.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "manifest_version": 2,
  "icons": {
    "48": "app.png",
    "128": "app.png"
  },
  "browser_action": {
    "default_icon": "action.png",
    "default_title": "Refresh all tabs in this window"
  }
}