Quick Tabs

Keep all your tabs in one place, grouped the way you like.
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": "Quick Tabs",
  "description": "Keep all your tabs in one place, grouped the way you like.",
  "version": "2.2",
  "icons": {
    "512": "icon.png"
  },
  "web_accessible_resources": [
    "index.html",
    "add.html",
    "edit.html",
    "config.html",
    "settings.html"
  ],
  "permissions": [
    "<all_urls>",
    "menus",
    "storage"
  ],
  "browser_action": {
    "default_title": "Quick Tabs",
    "default_popup": "popup/index.html",
    "browser_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "popup/js/main.js",
        "popup/js/m_set.js",
        "popup/js/settings.js",
        "popup/js/language.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{a44c43cb-d5c5-4104-9e1c-849de700e789}"
    }
  }
}