container-config is a helper script to configure Multi-Account Containers.
-
Configure containers constant in
script.ts
. -
Generate javascript.
npx tsc
-
Open the Multi-Account Containers debugger (
about:devtools-toolbox?id=%40testpilot-containers&type=extension
). -
Paste the generated javascript code in
script.js
into the debugger and run it.
- color:
string
. The color for the identity. See the MDN docs for supported values. - icon:
string
. The icon for the identity. See the MDN docs for supported values. - isolate:
boolean
. If the MACLimit to designated sites
checkbox should be checked. - URLs:
Map<string, boolean>
. Map with URLs for keys (e.g.https://example.com
) and values correspond to theRemember my decision for this site
checkbox.
['Github', {
color: 'green',
icon: 'circle',
isolate: true,
URLs: new Map([
['https://github.com', false],
['https://gist.github.com', false],
]),
}],