| OLD | NEW | 
 | (Empty) | 
|    1 <!DOCTYPE html> |  | 
|    2  |  | 
|    3 <!-- |  | 
|    4   - This file is part of Adblock Plus <https://adblockplus.org/>, |  | 
|    5   - Copyright (C) 2006-present eyeo GmbH |  | 
|    6   - |  | 
|    7   - Adblock Plus is free software: you can redistribute it and/or modify |  | 
|    8   - it under the terms of the GNU General Public License version 3 as |  | 
|    9   - published by the Free Software Foundation. |  | 
|   10   - |  | 
|   11   - Adblock Plus is distributed in the hope that it will be useful, |  | 
|   12   - but WITHOUT ANY WARRANTY; without even the implied warranty of |  | 
|   13   - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the |  | 
|   14   - GNU General Public License for more details. |  | 
|   15   - |  | 
|   16   - You should have received a copy of the GNU General Public License |  | 
|   17   - along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. |  | 
|   18   --> |  | 
|   19  |  | 
|   20 <html> |  | 
|   21 <head> |  | 
|   22   <meta charset="utf-8"> |  | 
|   23   <link rel="stylesheet" type="text/css" href="skin/popup.css"> |  | 
|   24   <script src="polyfill.js"></script> |  | 
|   25   <script src="ext/common.js"></script> |  | 
|   26   <script src="i18n.js"></script> |  | 
|   27   <script src="popup.js"></script> |  | 
|   28 </head> |  | 
|   29 <!-- Set tabindex to work around Chromium issue 304532 --> |  | 
|   30 <body class="nohtml" tabindex="1"> |  | 
|   31  |  | 
|   32 <header> |  | 
|   33   <img id="logo" src="icons/detailed/abp-64.png" srcset="icons/detailed/abp-128.
     png 2x"> |  | 
|   34 </header> |  | 
|   35  |  | 
|   36 <div id="wrapper"> |  | 
|   37   <div id="notification" hidden> |  | 
|   38     <div id="notification-content"> |  | 
|   39       <h1> |  | 
|   40         <span id="notification-title"></span> |  | 
|   41         <span id="notification-close"></span> |  | 
|   42       </h1> |  | 
|   43       <p id="notification-message"></p> |  | 
|   44     </div> |  | 
|   45     <ul id="notification-close-content"> |  | 
|   46       <li id="notification-hide" |  | 
|   47         class="i18n_overlay_notification_closing_button_hide"></li> |  | 
|   48       <li id="notification-optout" |  | 
|   49         class="i18n_overlay_notification_closing_button_optout"></li> |  | 
|   50     </ul> |  | 
|   51   </div> |  | 
|   52  |  | 
|   53   <div id="clickhide-instructions" class="i18n_clickhide_instructions"></div> |  | 
|   54  |  | 
|   55   <ul id="menu"> |  | 
|   56     <li id="enabled" class="menu-item" role="button"> |  | 
|   57       <div class="icon"></div> |  | 
|   58       <span id="enabled-yes" class="i18n_enabled_for_site"></span> |  | 
|   59       <span id="enabled-no" class="i18n_disabled_for_site"></span> |  | 
|   60     </li> |  | 
|   61  |  | 
|   62     <li id="clickhide" class="menu-item" role="button"> |  | 
|   63       <div class="icon"></div> |  | 
|   64       <span class="i18n_easy_create_filter"></span> |  | 
|   65     </li> |  | 
|   66     <li id="clickhide-cancel" class="menu-item" role="button"> |  | 
|   67       <div class="icon"></div> |  | 
|   68       <span class="i18n_cancel"></span> |  | 
|   69     </li> |  | 
|   70  |  | 
|   71     <li id="stats-container" class="collapsed"> |  | 
|   72       <div class="menu-item collapse" data-option="show_statsinpopup" data-colla
     psible="stats-container" role="button"> |  | 
|   73         <div class="icon"></div> |  | 
|   74         <span class="i18n_stats_title"></span> |  | 
|   75         <div class="collapse-icon-placeholder"></div> |  | 
|   76         <div class="collapse-icon"></div> |  | 
|   77       </div> |  | 
|   78       <ul id="stats" class="collapsible"> |  | 
|   79         <li> |  | 
|   80           <div> |  | 
|   81             <div id="stats-page"></div> |  | 
|   82             <div id="stats-total"></div> |  | 
|   83           </div> |  | 
|   84         </li> |  | 
|   85         <li> |  | 
|   86           <div id="show-iconnumber" class="checkbox" role="checkbox" aria-checke
     d></div> |  | 
|   87           <label for="show-iconnumber" class="i18n_stats_show_iconnumber"></labe
     l> |  | 
|   88         </li> |  | 
|   89       </ul> |  | 
|   90     </li> |  | 
|   91  |  | 
|   92     <li id="issueReporter" class="menu-item" role="button"> |  | 
|   93       <div class="icon"></div> |  | 
|   94       <span class="i18n_sendReport"></span> |  | 
|   95     </li> |  | 
|   96   </ul> |  | 
|   97 </div> |  | 
|   98  |  | 
|   99 <footer id="options" role="button"> |  | 
|  100   <div class="icon"></div> |  | 
|  101   <span class="i18n_options_short"></span> |  | 
|  102 </footer> |  | 
|  103  |  | 
|  104 </body> |  | 
|  105 </html> |  | 
| OLD | NEW |