搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

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

  • 2 回覆
  • 1 有這個問題
  • 971 次檢視
  • 最近回覆由 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",""));