mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
New managed setting:
"disabledFeatures": {
"title": "User interface features to disable",
"description": "A list of tokens, each of which correspond to a user interface feature to disable.",
"type": "array",
"items": { "type": "string" }
}
Supported tokens:
- `dashboard`: Prevent access to all dashboard settings
- `filteringMode`: Prevent changes to the default filtering mode,
or the current filtering mode of any site
Related feedback:
https://github.com/uBlockOrigin/uBOL-home/discussions/35#discussioncomment-11326086
27 lines
858 B
JSON
27 lines
858 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-03/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"noFiltering": {
|
|
"title": "List of domains for which no filtering should occur",
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"disableFirstRunPage": {
|
|
"title": "Disable first run page",
|
|
"type": "boolean"
|
|
},
|
|
"rulesets": {
|
|
"title": "Rulesets to add/remove",
|
|
"description": "Prefix a ruleset id with '+' to add, or '-' to remove. Use '-*' to disable all non-default lists.",
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"disabledFeatures": {
|
|
"title": "User interface features to disable",
|
|
"description": "A list of tokens, each of which correspond to a user interface feature to disable.",
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
}
|
|
}
|
|
}
|