Multiple Tab Handler

Allows you to select tabs by dragging and do something.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "3.2.0",
  "author": "YUKI \"Piro\" Hiroshi",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "activeTab",
    "contextualIdentities",
    "cookies",
    "menus",
    "menus.overrideContext",
    "notifications",
    "storage",
    "tabs"
  ],
  "optional_permissions": [
    "<all_urls>",
    "bookmarks"
  ],
  "icons": {
    "16": "/resources/16x16.svg#default",
    "20": "/resources/20x20.svg#default",
    "24": "/resources/24x24.svg#default"
  },
  "background": {
    "page": "/background/background.html"
  },
  "browser_action": {
    "default_title": "__MSG_panelTitle__",
    "default_icon": {
      "16": "/resources/16x16.svg#toolbar",
      "20": "/resources/20x20.svg#toolbar",
      "24": "/resources/24x24.svg#toolbar"
    },
    "browser_style": true
  },
  "commands": {
    "invertSelection": {
      "description": "__MSG_command_invertSelection__"
    }
  },
  "options_ui": {
    "page": "/options/options.html",
    "browser_style": true
  },
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "multipletab@piro.sakura.ne.jp",
      "strict_min_version": "67.0"
    }
  }
}