Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

Policies.json

  • 2 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 8 προβολές
  • Τελευταία απάντηση από Theknee

more options

Hello,

I am trying to control a whitelist add-on installation in firefox Quantum 61.0.2 (64-bit). I am using the policies.json file (located under C:\Program Files\Mozilla Firefox\distribution). Problem is if I use the following syntax, Firefox allow me to install any add-on other than the two listed.

{

 "policies": {

"InstallAddonsPermission": {

     		"Allow": ["https://addons.mozilla.org/en-US/firefox/addon/exif-viewer/?src=search",
                               "https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/?src=search"],			  

"Default": false

      }
  }

}


But, if I use the following code, all add-on are blocked. Anyone can tell me what is the correct syntax to control specific add-on to be installed on the computer?

{

 "policies": {
   "InstallAddonsPermission": {
     "Allow": ["http://example.org/",
                     "http://example.edu/"],
     "Default": false
   }
 }

}


Thank you.

Hello, I am trying to control a whitelist add-on installation in firefox Quantum 61.0.2 (64-bit). I am using the policies.json file (located under C:\Program Files\Mozilla Firefox\distribution). Problem is if I use the following syntax, Firefox allow me to install any add-on other than the two listed. { "policies": { "InstallAddonsPermission": { "Allow": ["https://addons.mozilla.org/en-US/firefox/addon/exif-viewer/?src=search", "https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/?src=search"], "Default": false } } } But, if I use the following code, all add-on are blocked. Anyone can tell me what is the correct syntax to control specific add-on to be installed on the computer? { "policies": { "InstallAddonsPermission": { "Allow": ["http://example.org/", "http://example.edu/"], "Default": false } } } Thank you.

Όλες οι απαντήσεις (2)

more options

What happens if those are blank?

more options

It seem to allow to install any add-on. Problem is I do want to allow only specific list of add-on. It seems that I soon as I put a valid url it opens the installation to any add-on(nothing is blocked).