user_preferences.html 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <html>
  2. <head>
  3. <link rel="stylesheet" type="text/css" href="/css/smoothness/jquery-ui-1.12.1.custom.min.css" rel="stylesheet" />
  4. <link rel="stylesheet" type="text/css" href="/lib/uniform/uniform.default.css" />
  5. <link rel="stylesheet" type="text/css" href="/css/opensans/opensans.css">
  6. <link rel="stylesheet" type="text/css" href="/css/font-awesome-4.6.3/css/font-awesome.min.css">
  7. <link rel="stylesheet" type="text/css" href="/css/options_main_page.css" />
  8. <link rel="stylesheet" type="text/css" href="user_preferences.css" />
  9. <script src="/lib/jquery-3.3.1.min.js" type="text/javascript"></script>
  10. <script src="/lib/jquery-ui-1.12.1.custom.min.js" type="text/javascript"></script>
  11. <script src="/lib/uniform/jquery.uniform.js" type="text/javascript"></script>
  12. <script src="/lib/custom_i18n.js" type="text/javascript"></script>
  13. <script src="/lib/i18n_translator.js" type="text/javascript"></script>
  14. <script src="/lib/object-watch.js" type="text/javascript"></script>
  15. <script src="/js/cookie_helpers.js" type="text/javascript"></script>
  16. <script src="/js/utils.js" type="text/javascript"></script>
  17. <script src="/js/data.js" type="text/javascript"></script>
  18. <script src="options_page_chooser.js" type="text/javascript"></script>
  19. <script src="user_preferences.js" type="text/javascript"></script>
  20. <title i18n="Options"></title>
  21. </head>
  22. <body>
  23. <div id="navigation">
  24. <h1>EditThisCookie</h1>
  25. <ul>
  26. <li class="chooser" id="getting_started" i18n="getting_started"></li>
  27. <li class="chooser selected" id="user_preferences" i18n="Options"></li>
  28. <li class="chooser" id="block_rules" i18n="Blocked_Cookies"></li>
  29. <li class="chooser" id="readonly_rules" i18n="Protected_Cookies"></li>
  30. </ul>
  31. </div>
  32. <div id="options-box" class="box">
  33. <h1 i18n="Options"></h1>
  34. <hr>
  35. <div class="formLine">
  36. <input type="checkbox" class="checkbox" id="showAlerts" />
  37. <label for="showAlerts" class="formLabel" i18n="Show_Alerts"></label>
  38. </div>
  39. <div class="formLine">
  40. <input type="checkbox" class="checkbox" id="showCommandsLabels" />
  41. <label for="showCommandsLabels" class="formLabel" i18n="ShowCommandsLabels"></label>
  42. </div>
  43. <div class="formLine">
  44. <input type="checkbox" class="checkbox" id="refreshAfterSubmit" />
  45. <label for="refreshAfterSubmit" class="formLabel" i18n="reloadAfterChanges"></label>
  46. </div>
  47. <div class="formLine">
  48. <input type="checkbox" class="checkbox" id="skipCacheRefresh" />
  49. <label for="skipCacheRefresh" id="skipCacheRefreshLabel" class="formLabel" i18n="skipCacheOnReload"></label>
  50. </div>
  51. <div class="formLine">
  52. <input type="checkbox" class="checkbox" id="showChristmasIcon" />
  53. <label for="showChristmasIcon" class="formLabel" i18n="Show_Christmas_Icon"></label>
  54. </div>
  55. <div class="formLine">
  56. <input type="checkbox" class="checkbox" id="showContextMenu" />
  57. <label for="showContextMenu" class="formLabel" i18n="Show_ContextMenu"></label>
  58. <a id="showContextMenuHelper" class="helper" i18n_title="Show_ContextMenu_helper">?</a>
  59. </div>
  60. <div class="formLine">
  61. <input type="checkbox" class="checkbox" id="showDevToolsPanel" />
  62. <label for="showDevToolsPanel" class="formLabel" i18n="Show_DevTools_Panel"></label>
  63. </div>
  64. <div class="formLine">
  65. <input type="checkbox" class="checkbox" id="showFlagAndDeleteAll" />
  66. <label for="showFlagAndDeleteAll" class="formLabel" i18n="Show_Flag_And_Delete_All"></label>
  67. </div>
  68. <div class="formLine">
  69. <input type="checkbox" class="checkbox" id="showDomain" />
  70. <label for="showDomain" class="formLabel" i18n="Show_Domain"></label>
  71. </div>
  72. <div class="formLine">
  73. <input type="checkbox" class="checkbox" id="showDomainBeforeName" />
  74. <label for="showDomainBeforeName" class="formLabel" id="showDomainBeforeNameLabel" i18n="Show_Domain_Before_Name"></label>
  75. </div>
  76. <div class="formLine">
  77. <span class="ui-icon ui-icon-minus" width="30px" style="float:left; margin-right:11.5px; margin-top: 2px;"></span>
  78. <label for="sortCookiesType" class="formLabel" i18n="Sort_Cookies"></label>
  79. <select type="select" id="sortCookiesType">
  80. <option value="domain_alpha" i18n="Sort_Cookies_Domain_Alpha"></option>
  81. <option value="alpha" i18n="Sort_Cookies_Alpha"></option>
  82. </select>
  83. </div>
  84. <div class="formLine">
  85. <input type="checkbox" class="checkbox" id="useMaxDate">
  86. <label for="useMaxDate" class="formLabel" i18n="Max_Date_Option"></label>
  87. </div>
  88. <div class="formLine" id="maxDateContainer">
  89. <span class="ui-icon ui-icon-minus" width="30px" style="float:left; margin-right:11.5px; margin-top: 2px;"></span>
  90. <label for="maxDate" class="formLabel" i18n="Max_Date" id="maxDateLabel"></label>
  91. <input type="text" class="checkbox" id="maxDate" value="1" size="5">
  92. <div id="maxDateType">
  93. <input type="radio" id="radioHour" name="radioMaxDate" value="3600" />
  94. <label for="radioHour" i18n="hour"></label>
  95. <input type="radio" id="radioDay" name="radioMaxDate" value="8640" />
  96. <label for="radioDay" i18n="day"></label>
  97. <input type="radio" id="radioMonth" name="radioMaxDate" value="2592000" checked="checked" />
  98. <label for="radioMonth" i18n="month"></label>
  99. <input type="radio" id="radioYear" name="radioMaxDate" value="31104000" />
  100. <label for="radioYear" i18n="year"></label>
  101. </div>
  102. <div id="saveMaxDateButton" i18n="Save"></div>
  103. <div id="shortenProgress" style="display:none;">
  104. <i id="shortenSpinner" class="fa fa-refresh fa-spin"></i>
  105. <span>...</span>
  106. </div>
  107. </div>
  108. <div class="formLine">
  109. <input type="checkbox" class="checkbox" id="useCustomLocale">
  110. <label for="useCustomLocale" class="formLabel" i18n="Use_Custom_Locale"></label>:
  111. <select type="select" class="" id="customLocale">
  112. </select>
  113. </div>
  114. <div class="formLine">
  115. <span class="ui-icon ui-icon-minus"></span>
  116. <label for="copyCookiesType" class="formLabel" i18n="Copy_Cookies_Type"></label>
  117. <select type="select" id="copyCookiesType">
  118. <option value="json">JSON</option>
  119. <option value="netscape">Netscape HTTP Cookie File</option>
  120. <option value="semicolonPairs">Semicolon separated name=value pairs</option>
  121. <option value="lpw">Perl::LWP</option>
  122. </select>
  123. </div>
  124. </div>
  125. </body>
  126. </html>