| OLD | NEW | 
|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> | 
| 2 <html> | 2 <html> | 
| 3 <head> | 3 <head> | 
| 4   <title i18n="popupTitle"></title> | 4   <title i18n="popupTitle"></title> | 
| 5   <link rel="stylesheet" type="text/css" href="popup.css"> | 5   <link rel="stylesheet" type="text/css" href="popup.css"> | 
| 6 </head> | 6 </head> | 
| 7 | 7 | 
| 8 <body> | 8 <body> | 
| 9   <h1 i18n="extensionName"></h1> | 9   <h1 i18n="extensionName"></h1> | 
| 10   <div id="current_url"></div> | 10   <button i18n="popupAddBlacklist" id="list-edit-button"></button><br> | 
| 11   <div> | 11 | 
| 12     <button i18n="popupAddBlacklist" id="list_edit_button"></button><br> | 12   <div id="file-url-message" hidden> | 
|  | 13     <a href="" i18n="popupFileURL" id="open-extensions"></a> | 
| 13   </div> | 14   </div> | 
| 14 | 15 | 
| 15   <div id="messages"> | 16   <div class="bottom-bar"> | 
| 16     <div id="status"> </div> | 17     <span id="feedback-button"> | 
| 17     <div id="file_url_message" hidden> | 18       <a id="feedback-link" class="image-link"> | 
| 18       <a href="" i18n="popupFileURL" id="open_extensions"></a> | 19         <img class="button-image" src="feedback.png" i18n-alt="sendFeedback"> | 
| 19     </div> | 20       </a> | 
|  | 21     </span> | 
|  | 22 | 
|  | 23     <span id="status"> </span> | 
|  | 24 | 
|  | 25     <span id="options-button"> | 
|  | 26       <a id="options-link" class="image-link"> | 
|  | 27         <img class="button-image" src="settings.png" i18n-alt="openOptions"> | 
|  | 28       </a> | 
|  | 29     </span> | 
| 20   </div> | 30   </div> | 
| 21 | 31 | 
| 22   <a href="" i18n="sendFeedback" id="report_page"></a> |  | 
| 23   <a href="" i18n="openOptions" id="open_options"></a> |  | 
| 24 |  | 
| 25   <script src="common.js"></script> | 32   <script src="common.js"></script> | 
| 26   <script src="popup.js"></script> | 33   <script src="popup.js"></script> | 
| 27 </body> | 34 </body> | 
| 28 </html> | 35 </html> | 
| OLD | NEW | 
|---|