Tab Grouper

Tab Grouper

Group tabs for one-click access! Copy all open tabs to clipboard with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Grouper",
  "version": "0.9.4",
  "description": "Group tabs for one-click access! Copy all open tabs to clipboard with a single click.",
  "background": {
    "scripts": [
      "bginit.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "/images/icon48.png",
    "default_title": "TabGrouper"
  },
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Ctrl+Shift+T"
      },
      "description": "Save the current group of tabs."
    }
  },
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}