index.html (1559B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 <!doctype html> 5 <html dir=""> 6 <head> 7 <meta 8 http-equiv="Content-Security-Policy" 9 content="default-src chrome: resource:; img-src chrome:;" 10 /> 11 <link 12 rel="stylesheet" 13 type="text/css" 14 href="chrome://devtools/content/anti-tracking/anti-tracking.css" 15 /> 16 </head> 17 <body class="theme-body" role="application"> 18 <script src="chrome://devtools/content/shared/theme-switching.js"></script> 19 <script src="resource://devtools/client/anti-tracking/initializer.js"></script> 20 <div id="anti-tracking-panel"> 21 <div id="tracker-toolbar-container"> 22 <button id="block-selected">Block Selected</button> 23 <button id="unblock-selected">Unblock Selected</button> 24 <button id="reset">Reset unblock list</button> 25 <button id="interactive-debugging">Start Interactive Debugging</button> 26 <button id="website-broke" disabled>Website Broke</button> 27 <button id="test-next-tracker" disabled>Continue</button> 28 <button id="stop-debugging" disabled>Stop</button> 29 <div id="interactive-debugger-prompt"></div> 30 </div> 31 <div id="tracker-table-container"> 32 <table id="tracker-table"> 33 <thead id="tracker-table-head"></thead> 34 <tbody id="tracker-table-body"></tbody> 35 </table> 36 </div> 37 </div> 38 </body> 39 </html>