Reload All Tabs in Window

Reload All Tabs in Window

Reload all tabs in current window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Reload All Tabs in Window",
  "version": "0.5",
  "description": "Reload all tabs in current window.",
  "developer": {
    "name": "ericchase",
    "url": "https://addons.mozilla.org/en-US/firefox/addon/reload-all-tabs-in-window/"
  },
  "icons": {
    "48": "images/logo-48.png",
    "96": "images/logo-96.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/browser-action-16.png",
      "32": "images/browser-action-32.png"
    },
    "default_title": "Reload all tabs in this window."
  },
  "sidebar_action": {
    "browser_style": true,
    "default_icon": "images/logo-48.png",
    "default_title": "Skip Tabs",
    "default_panel": "sidebar/disable-tabs.html",
    "open_at_install": false
  },
  "options_ui": {
    "browser_style": true,
    "page": "options/options.html"
  },
  "commands": {
    "_execute_browser_action": {
      "description": "Reload tabs"
    }
  },
  "background": {
    "scripts": [
      "js/browser-action.js",
      "js/context-menu.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{f316fd83-cc84-40a1-9fe0-86516e21e8b4}"
    }
  },
  "permissions": [
    "activeTab",
    "menus",
    "sessions",
    "storage",
    "tabs"
  ],
  "manifest_version": 2
}