diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:55:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:55:34 +0000 |
commit | 75417f5e3d32645859d94cec82255dc130ec4a2e (patch) | |
tree | 5fd46925c6b4a881c9208772ed8e5cc0588bc164 /src/data/schema.json | |
parent | Initial commit. (diff) | |
download | privacybadger-75417f5e3d32645859d94cec82255dc130ec4a2e.tar.xz privacybadger-75417f5e3d32645859d94cec82255dc130ec4a2e.zip |
Adding upstream version 2020.10.7.upstream/2020.10.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/data/schema.json')
-rw-r--r-- | src/data/schema.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/data/schema.json b/src/data/schema.json new file mode 100644 index 0000000..b265b61 --- /dev/null +++ b/src/data/schema.json @@ -0,0 +1,48 @@ +{ + "type": "object", + "properties": { + "checkForDNTPolicy": { + "title": "Check if third-parties comply with EFF's DNT policy", + "description": "If set to false then do not query third-party domains for declared compliance with EFF's Do Not Track policy.", + "type": "boolean" + }, + "disabledSites": { + "title": "Disabled sites", + "description": "List of site domains where Privacy Badger is disabled.", + "type": "array", + "items": { + "type": "string" + } + }, + "learnLocally": { + "title": "Learn to block new trackers from your browsing", + "description": "Enabling learning may make you more identifiable to websites. Please see https://www.eff.org/badger-evolution for more information.", + "type": "boolean" + }, + "learnInIncognito": { + "title": "Learn in Private/Incognito windows", + "description": "Enabling learning in Private/Incognito windows may leave traces of your private browsing history on your computer. By default, Privacy Badger will block trackers it already knows about in Private/Incognito windows, but it won't learn about new trackers. You might want to enable this option if a lot of your browsing happens in Private/Incognito windows.", + "type": "boolean" + }, + "sendDNTSignal": { + "title": "Send websites the Do Not Track signal", + "description": "Toggles sending the DNT header and setting navigator.doNotTrack on websites.", + "type": "boolean" + }, + "showCounter": { + "title": "Show count of blocked items", + "description": "Toggles showing the counter over Privacy Badger's button in the browser toolbar.", + "type": "boolean" + }, + "showIntroPage": { + "title": "Show intro page", + "description": "If set to false then do not open the new user intro page upon install.", + "type": "boolean" + }, + "socialWidgetReplacementEnabled": { + "title": "Replace social widgets", + "description": "Toggles social widget replacement.", + "type": "boolean" + } + } +} |