The Great Grouper

The Great Grouper

Flooded with tabs? Store them easily into groups, reopen them whenever you feel like it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "2.0",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png",
    "256": "images/icon256.png"
  },
  "background": {
    "scripts": [
      "scripts/popup.js",
      "scripts/background.js",
      "scripts/ui/bg/index.js",
      "scripts/ui/bg/config.js",
      "scripts/ui/bg/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "<all_urls>",
    "contextMenus",
    "http://*/*",
    "https://*/*",
    "bookmarks",
    "management"
  ],
  "browser_action": {
    "default_icon": "images/icon256.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_appName__"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+B",
        "mac": "Command+B",
        "chromeos": "Ctrl+B",
        "linux": "Ctrl+B"
      }
    }
  },
  "options_page": "options.html"
}