From 9f6f01c623e6f0b33809662711e40226d0f3e214 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Wed, 5 Oct 2016 09:37:05 -0400 Subject: [PATCH] Updated Deploying uBlock Origin (markdown) --- Deploying-uBlock-Origin.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Deploying-uBlock-Origin.md b/Deploying-uBlock-Origin.md index e425494..798dfd6 100644 --- a/Deploying-uBlock-Origin.md +++ b/Deploying-uBlock-Origin.md @@ -17,9 +17,9 @@ The content of `adminSettings` is pretty straightforward: configure uBO as you w An example, I created a backup file after having customized uBO, and removed everything except for the _"Color-blind friendly"_ setting, to force that setting to be set on the user's side. Resulting text file: { - "userSettings": { - "colorBlindFriendly": true - } + "userSettings": { + "colorBlindFriendly": true + } } Now, the value for `adminSettings` must itself be a plain string, and this means we need to encode the above text into a string, using `JSON.stringify`. Here is a small utility to help you deal with this step: .