preferences.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.mozext.blocking.enabled"
  11. ,"type": "bool"
  12. ,"value": true
  13. ,"title": "Block access to moz-extension:// URIs from Web"
  14. ,"description": "The possibility for fingerprintable leaks may exist."
  15. }
  16. ,{
  17. "name": "uri.ext.blocking.enabled"
  18. ,"type": "bool"
  19. ,"value": true
  20. ,"title": "Block access to extension:// URIs from Web"
  21. ,"description": "Like moz-extension://, the possibility for fingerprintable leaks may exist in webextensions."
  22. }
  23. ,{
  24. "name": "uri.chrome.blocking.enabled"
  25. ,"type": "bool"
  26. ,"value": false
  27. ,"title": "Block Web-exposed subset of chrome:// URIs"
  28. ,"description": "RECOMMENDED for privacy. Enabling it may break certain extensions or badly designed Web sites."
  29. }
  30. ,{
  31. "name": "redirect.enableMasking"
  32. ,"type": "bool"
  33. ,"value": true
  34. ,"title": "Uniformly filter disallowed redirects"
  35. ,"description": "This eliminates one known source of an information leak"
  36. }
  37. ,{
  38. "name": "uri.resource.exposedList"
  39. ,"type": "string"
  40. ,"value": ""
  41. ,"title": "Exposed resource:// domains"
  42. ,"description": "This may harm your privacy: Only for debugging and as temporary measures (Separated with commas)"
  43. }
  44. ,{
  45. "name": "uri.chrome.exposedList"
  46. ,"type": "string"
  47. ,"value": ""
  48. ,"title": "Exposed chrome:// domains"
  49. ,"description": "This may harm your privacy: Only for debugging and as temporary measures (Separated with commas)"
  50. }
  51. ,{
  52. "name": "uri.resource.mozextList"
  53. ,"type": "string"
  54. ,"value": ""
  55. ,"title": "Exposed moz-extension:// domains"
  56. ,"description": "This may harm your privacy: Only for debugging and as temporary measures (Separated with commas)"
  57. }
  58. ,{
  59. "name": "uri.resource.extList"
  60. ,"type": "string"
  61. ,"value": ""
  62. ,"title": "Exposed extension:// domains"
  63. ,"description": "This may harm your privacy: Only for debugging and as temporary measures (Separated with commas)"
  64. }
  65. ,{
  66. "name": "uri.about.restricted"
  67. ,"type": "bool"
  68. ,"value": false
  69. ,"title": "Restrict about: pages by default (for paranoids)"
  70. ,"description": "This may break certain add-ons or the browser's internal pages"
  71. }
  72. ,{
  73. "name": "debug.enabled"
  74. ,"type": "bool"
  75. ,"value": false
  76. ,"title": "Enable debugging messages (for hackers)"
  77. ,"description": "Enable this and copy-and-paste the contents of Developer > Browser Console when you report a problem."
  78. }
  79. ,{
  80. "name": "control.update"
  81. ,"type": "control"
  82. ,"label": "Update"
  83. ,"title": "Update the policy"
  84. ,"description": "Push this button for changes to take effect."
  85. }
  86. ]