1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-28 21:57:12 +02:00

Updated Deploying uBlock Origin (markdown)

Raymond Hill 2016-10-05 09:37:05 -04:00
parent 6f8ad5d89a
commit 9f6f01c623

@ -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: <http://raymondhill.net/ublock/adminSetting.html>.