Wiki Walk Escape

Wiki Walk Escape

Easily close all tabs from one site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Wiki Walk Escape",
  "version": "1.5",
  "manifest_version": 2,
  "description": "Easily close all tabs from one site.",
  "minimum_chrome_version": "20.0",
  "background": {
    "scripts": [
      "common.js",
      "main.js"
    ]
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_title": "Escape Wiki Walk",
    "default_icon": "icon-19.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "close-tabs": {
      "suggested_key": {
        "default": "Alt+C"
      },
      "description": "Close all tabs with the same domain as the selected one."
    }
  }
}