Containers On The Go

Containers On The Go

Open different accounts on the same site at the same time. Improve privacy by separating social media and shopping from your regular browsing. The add-on will create new containers for the new tabs and removed them when the tabs are closed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Open new tabs in new containers. The containers are automatically removed when the tabs are closed.",
  "manifest_version": 2,
  "name": "Containers On The Go",
  "version": "1.17",
  "icons": {
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "contextMenus",
    "contextualIdentities",
    "cookies",
    "notifications",
    "storage"
  ],
  "browser_action": {
    "default_area": "tabstrip",
    "default_icon": "icons/icon-128.png",
    "default_title": "Open a new tab in a new container (Alt+C)"
  },
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+C"
      }
    }
  },
  "applications": {
    "gecko": {
      "id": "{7e56c1ad-71c3-47fe-bdba-372c7770e0cb}",
      "strict_min_version": "57.0"
    }
  }
}