From fee26a70bca35b2d7562c3f1d6d98af88db3dc7c Mon Sep 17 00:00:00 2001 From: gorhill Date: Wed, 4 Nov 2015 16:00:27 -0500 Subject: [PATCH] someone in Chrome store reported a JSON Schema error when trying to install uBO --- platform/chromium/managed_storage.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/platform/chromium/managed_storage.json b/platform/chromium/managed_storage.json index 08d531da0..a6def727c 100644 --- a/platform/chromium/managed_storage.json +++ b/platform/chromium/managed_storage.json @@ -1,10 +1,11 @@ { - "type": "object", - "properties": { - "adminSettings": { - "title": "A valid JSON string compliant with uBO's backup format.", - "description": "All entries present will overwrite local settings.", - "type": "string" - } + "$schema": "http://json-schema.org/draft-03/schema", + "type": "object", + "properties": { + "adminSettings": { + "title": "A valid JSON string compliant with uBO's backup format.", + "description": "All entries present will overwrite local settings.", + "type": "string" } + } }