uBlock/platform/mv3/extension/managed_storage.json
Raymond Hill a56e13156f
[mv3] Add more managed policies
"showBlockedCount": Boolean, to enable/disable the badge count on the
toolbar icon.

"strictBlockMode": Boolean. to enable/disable strict-blocking.

Related issues/discussion:
- https://github.com/uBlockOrigin/uBOL-home/discussions/35#discussioncomment-12567804
- https://github.com/uBlockOrigin/uBOL-home/issues/334
2025-04-25 11:25:50 -04:00

40 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-03/schema#",
"type": "object",
"properties": {
"defaultFiltering": {
"title": "The default filtering mode",
"description": "Can be one of \"none\", \"basic\", \"optimal\", \"complete\".",
"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" }
},
"disableFirstRunPage": {
"title": "Disable first run page",
"type": "boolean"
},
"noFiltering": {
"title": "List of domains for which no filtering should occur",
"type": "array",
"items": { "type": "string" }
},
"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" }
},
"showBlockedCount": {
"title": "Enable/disable toolbar icon count badge",
"type": "boolean"
},
"strictBlockMode": {
"title": "Enable/disable strict blocking",
"type": "boolean"
}
}
}