OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <!-- |
| 3 - This file is part of Adblock Plus <http://adblockplus.org/>, |
| 4 - Copyright (C) 2006-2015 Eyeo GmbH |
| 5 - |
| 6 - Adblock Plus is free software: you can redistribute it and/or modify |
| 7 - it under the terms of the GNU General Public License version 3 as |
| 8 - published by the Free Software Foundation. |
| 9 - |
| 10 - Adblock Plus is distributed in the hope that it will be useful, |
| 11 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 - GNU General Public License for more details. |
| 14 - |
| 15 - You should have received a copy of the GNU General Public License |
| 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 17 --> |
| 18 |
| 19 <html> |
| 20 <head> |
| 21 <link type="text/css" rel="stylesheet" href="skin/devtools-panel.css"> |
| 22 <script src="ext/common.js"></script> |
| 23 <script src="ext/devtools.js"></script> |
| 24 <script src="devtools-panel.js"></script> |
| 25 </head> |
| 26 <body> |
| 27 <header> |
| 28 <table> |
| 29 <colgroup> |
| 30 <col> |
| 31 <col> |
| 32 <col> |
| 33 </colgroup> |
| 34 <tr> |
| 35 <td colspan="3"> |
| 36 Show |
| 37 <select id="filter-state"> |
| 38 <option value="">all</option> |
| 39 <option>blocked</option> |
| 40 <option>whitelisted</option> |
| 41 </select> |
| 42 items of |
| 43 <select id="filter-type"> |
| 44 <option value="">any</option> |
| 45 <option>SUBDOCUMENT</option> |
| 46 <option>IMAGE</option> |
| 47 <option>STYLESHEET</option> |
| 48 <option>SCRIPT</option> |
| 49 <option>OBJECT</option> |
| 50 <option>XMLHTTPREQUEST</option> |
| 51 <option>POPUP</option> |
| 52 <option>ELEMHIDE</option> |
| 53 <option>OTHER</option> |
| 54 </select> |
| 55 type |
| 56 </td> |
| 57 </tr> |
| 58 <tr> |
| 59 <td> |
| 60 <div class="request-wrapper"> |
| 61 <div class="url">Request</div> |
| 62 <div class="domain">Document domain</div> |
| 63 </div> |
| 64 </td> |
| 65 <td> |
| 66 <div class="type">Type</div> |
| 67 </td> |
| 68 <td> |
| 69 <div class="filter-wrapper"> |
| 70 <div class="filter">Filter</div> |
| 71 <div class="origin">Origin</div> |
| 72 </div> |
| 73 </td> |
| 74 </tr> |
| 75 </table> |
| 76 </header> |
| 77 <div id="items"> |
| 78 <table> |
| 79 <colgroup> |
| 80 <col> |
| 81 <col> |
| 82 <col> |
| 83 </colgroup> |
| 84 <tbody> |
| 85 </tbody> |
| 86 </table> |
| 87 </div> |
| 88 <footer> |
| 89 <a id="reload">Reload</a> page to see effect of filter changes |
| 90 </footer> |
| 91 |
| 92 <template> |
| 93 <tr> |
| 94 <td> |
| 95 <div class="request-wrapper"> |
| 96 <div class="url"> </div> |
| 97 <div class="domain"></div> |
| 98 </div> |
| 99 </td> |
| 100 <td> |
| 101 <div class="type"></div> |
| 102 </td> |
| 103 <td> |
| 104 <div class="action-wrapper"> |
| 105 <div class="filter-wrapper"> |
| 106 <div class="filter"> </div> |
| 107 <div class="origin"> </div> |
| 108 </div> |
| 109 </div> |
| 110 </td> |
| 111 </tr> |
| 112 </template> |
| 113 </body> |
| 114 </html> |
OLD | NEW |