mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
"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
40 lines
1.2 KiB
JSON
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"
|
|
}
|
|
}
|
|
}
|