搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

How to create multiple policies into "policies.json" ?

  • 2 个回答
  • 1 人有此问题
  • 683 次查看
  • 最后回复者为 cor-el

more options

Excuse me ! I'm running one policy, and I want to create another into this file "policies.json". After editing, it doesn't work.Like this:

Path: C:\Program Files\Mozilla Firefox\Distribution\policies.json

//It is the way to block "about:config" from github.com,and it works. { "policies":{ "BlockAboutConfig":true } }

//Now I create another policy. { "policies":{ "BlockAboutConfig":true "BlockAboutAddons":true } }

//Or like this,they don't work. { "policies":{ "BlockAboutConfig":true } } { "policies":{ "BlockAboutAddons":true } }

So please ! Anybody could tell me how to use the grammar about "policies.json" ? Thank you very much !

Excuse me ! I'm running one policy, and I want to create another into this file "policies.json". After editing, it doesn't work.Like this: Path: C:\Program Files\Mozilla Firefox\Distribution\policies.json //It is the way to block "about:config" from github.com,and it works. { "policies":{ "BlockAboutConfig":true } } //Now I create another policy. { "policies":{ "BlockAboutConfig":true "BlockAboutAddons":true } } //Or like this,they don't work. { "policies":{ "BlockAboutConfig":true } } { "policies":{ "BlockAboutAddons":true } } So please ! Anybody could tell me how to use the grammar about "policies.json" ? Thank you very much !
已附加屏幕截图

被采纳的解决方案

Hi, you need a comma between each of the property: value pairs in an object. For example

{
  "policies": {
    "BlockAboutAddons": true,
    "BlockAboutConfig": true
  }
}

You may also see examples with square brackets where a property takes an array of values, but that's a story for another day.

定位到答案原位置 👍 1

所有回复 (2)

more options

选择的解决方案

Hi, you need a comma between each of the property: value pairs in an object. For example

{
  "policies": {
    "BlockAboutAddons": true,
    "BlockAboutConfig": true
  }
}

You may also see examples with square brackets where a property takes an array of values, but that's a story for another day.

more options

Note that there shouldn't be a comma before a closing curly bracket (})

You can use JavaScript like this to test the code in the Web Console or Browser Console.

  • JSON.parse(prompt("Paste JSON code",""));