In order to install external extension into Google Chrome browser, I try to update chrome external extension json file. Using JSON.Net it seems to be easy:
string fileName = "..."; // path to chrome external extension json file
string externalExtensionsJson = File.ReadAllText(fileName);
JObject externalExtensions = JObject.Parse(externalExtensionsJson);
but I get a Newtonsoft.Json.JsonReaderException saying:
"Error parsing comment. Expected: *, got /. Path '', line 1, position 1."
when calling JObject.Parse because this file contain:
// This json file will contain a list of extensions that will be included
// in the installer.
{
}
and comments are not part of json (as seen in How do I add comments to Json.NET output?).
I know I can remove comments with a Regex (Regex to remove javascript double slash (//) style comments) but I need to rewrite json into file after modification and keeping comment can be a good thinks.
Question: Is there a way to read json with comments without removing them and be able to rewrite them?