preferences.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. [
  2. {
  3. "name": "uri.resource.blocking.enabled"
  4. ,"type": "bool"
  5. ,"value": true
  6. ,"title": "Block access to resource:// URIs from Web"
  7. ,"description": "This is the extesion's main feature."
  8. }
  9. ,{
  10. "name": "uri.chrome.blocking.enabled"
  11. ,"type": "bool"
  12. ,"value": false
  13. ,"title": "Block Web-exposed subset of chrome:// URIs"
  14. ,"description": "RECOMMENDED for privacy. Enabling it may break certain extensions or badly designed Web sites."
  15. }
  16. ,{
  17. "name": "redirect.enableMasking"
  18. ,"type": "bool"
  19. ,"value": true
  20. ,"title": "Uniformly filter disallowed redirects"
  21. ,"description": "This eliminates one known source of an information leak"
  22. }
  23. ,{
  24. "name": "uri.resource.exposedList"
  25. ,"type": "string"
  26. ,"value": ""
  27. ,"title": "Exposed resource:// domains"
  28. ,"description": "This may harm your privacy: Only for debugging and as temporary measures (Separated with commas)"
  29. }
  30. ,{
  31. "name": "uri.chrome.exposedList"
  32. ,"type": "string"
  33. ,"value": ""
  34. ,"title": "Exposed chrome:// domains"
  35. ,"description": "This may harm your privacy: Only for debugging and as temporary measures (Separated with commas)"
  36. }
  37. ,{
  38. "name": "uri.about.restricted"
  39. ,"type": "bool"
  40. ,"value": false
  41. ,"title": "Restrict about: pages by default (for paranoids)"
  42. ,"description": "This may break certain add-ons or the browser's internal pages"
  43. }
  44. ,{
  45. "name": "debug.enabled"
  46. ,"type": "bool"
  47. ,"value": false
  48. ,"title": "Enable debugging messages (for hackers)"
  49. ,"description": "Enable this and copy-and-paste the contents of Developer > Browser Console when you report a problem."
  50. }
  51. ,{
  52. "name": "control.update"
  53. ,"type": "control"
  54. ,"label": "Update"
  55. ,"title": "Update the policy"
  56. ,"description": "Push this button for changes to take effect."
  57. }
  58. ]