-
Notifications
You must be signed in to change notification settings - Fork 280
-
Hey there, https://extensionworkshop.com/documentation/enterprise/enterprise-development/#how-to-add-policy |
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment
-
Yes, TST (and other my Firefox addons) supports configuring via GPO and policies.json. treestyletab/webextensions/common/common.js Lines 129 to 591 in 02abdd1
For example: {
"policies": {
"3rdparty": {
"Extensions": {
"[email protected]": {
"sidebarPosition": 1,
"sidebarPosition:locked": false
}
}
}
}
} I recommend you to configure TST by hand and export all options, then copy exported data and paste it under |
Beta Was this translation helpful? Give feedback.
Yes, TST (and other my Firefox addons) supports configuring via GPO and policies.json.
Here is the complete list of configurable options:
treestyletab/webextensions/common/common.js
Lines 129 to 591 in 02abdd1