OLD | NEW |
1 <div class="page hidden" id="content-settings-page"> | 1 <div class="page hidden" id="content-settings-page"> |
2 <h1 i18n-content="contentSettingsPage"></h1> | 2 <h1 i18n-content="contentSettingsPage"></h1> |
3 <!-- Cookie filter tab contents --> | 3 <!-- Cookie filter tab contents --> |
4 <section> | 4 <section> |
5 <h3 i18n-content="cookies_tab_label"></h3> | 5 <h3 i18n-content="cookies_tab_label"></h3> |
6 <div> | 6 <div> |
7 <div class="radio"> | 7 <div class="radio"> |
8 <label> | 8 <label> |
9 <input type="radio" name="cookies" value="allow"> | 9 <input type="radio" name="cookies" value="allow"> |
10 <span i18n-content="cookies_allow"></span> | 10 <span i18n-content="cookies_allow"></span> |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 <input type="radio" name="javascript" value="block"> | 85 <input type="radio" name="javascript" value="block"> |
86 <span i18n-content="javascript_block"></span> | 86 <span i18n-content="javascript_block"></span> |
87 </label> | 87 </label> |
88 </div> | 88 </div> |
89 | 89 |
90 <button class="exceptions-list-button" contentType="javascript" | 90 <button class="exceptions-list-button" contentType="javascript" |
91 i18n-content="manage_exceptions"></button> | 91 i18n-content="manage_exceptions"></button> |
92 </div> | 92 </div> |
93 </section> | 93 </section> |
94 | 94 |
| 95 <!-- Handlers settings --> |
| 96 <section id="handlers-section"> |
| 97 <h3 i18n-content="handlers_tab_label"></h3> |
| 98 <div> |
| 99 <div class="radio"> |
| 100 <label> |
| 101 <input type="radio" name="handlers" value="allow"> |
| 102 <span i18n-content="handlers_allow"></span> |
| 103 </label> |
| 104 </div> |
| 105 <div class="radio"> |
| 106 <label> |
| 107 <input type="radio" name="handlers" value="block"> |
| 108 <span i18n-content="handlers_block"></span> |
| 109 </label> |
| 110 </div> |
| 111 |
| 112 <button id="manage-handlers-button" contentType="handlers" |
| 113 i18n-content="manage_handlers"></button> |
| 114 </div> |
| 115 </section> |
| 116 |
95 <!-- Plug-ins filter --> | 117 <!-- Plug-ins filter --> |
96 <section> | 118 <section> |
97 <h3 i18n-content="plugins_tab_label"></h3> | 119 <h3 i18n-content="plugins_tab_label"></h3> |
98 <div> | 120 <div> |
99 <div class="radio"> | 121 <div class="radio"> |
100 <label> | 122 <label> |
101 <input type="radio" name="plugins" value="allow"> | 123 <input type="radio" name="plugins" value="allow"> |
102 <span i18n-content="plugins_allow"></span> | 124 <span i18n-content="plugins_allow"></span> |
103 </label> | 125 </label> |
104 </div> | 126 </div> |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 <input type="radio" name="notifications" value="block"> | 216 <input type="radio" name="notifications" value="block"> |
195 <span i18n-content="notifications_block"></span> | 217 <span i18n-content="notifications_block"></span> |
196 </label> | 218 </label> |
197 </div> | 219 </div> |
198 | 220 |
199 <button class="exceptions-list-button" contentType="notifications" | 221 <button class="exceptions-list-button" contentType="notifications" |
200 i18n-content="manage_exceptions"></button> | 222 i18n-content="manage_exceptions"></button> |
201 </div> | 223 </div> |
202 </section> | 224 </section> |
203 </div> | 225 </div> |
OLD | NEW |