Home | History | Annotate | Download | only in link_clicker.extension
      1 <!doctype html>
      2 <!--
      3 Copyright 2017 the V8 project authors. All rights reserved.
      4 Use of this source code is governed by a BSD-style license that can be
      5 found in the LICENSE file.
      6 -->
      7 <html>
      8   <head>
      9     <style>
     10     body {
     11       overflow: hidden;
     12       padding: 5px;
     13       width: 310px;
     14     }
     15     input, textarea, select, button {
     16       width : 300px;
     17       margin: 0;
     18       box-sizing: border-box;
     19     }
     20     label {
     21       clear: both;
     22     }
     23     </style>
     24     <script src="popup.js"></script>
     25   </head>
     26   <body>
     27     <form>
     28       <p>
     29         <label>Min click-interval <span id="minIntervalValue"></span>:
     30           <input type="range" id="minInterval" min="1000" max="60000">
     31         </label>
     32       </p>
     33       <p>
     34         <label> Max click-interval <span id="maxIntervalValue"></span>:
     35           <input type="range" id="maxInterval" min="1000" max="60000">
     36         </label>
     37       </p>
     38       <p>
     39         <label>Link regexp:
     40           <input type="input" id="pattern" >
     41         </label>
     42       </p>
     43       <p>
     44         <label>Enable:
     45           <input type="checkbox" id="enabled" >
     46         </label>
     47       </p>
     48     </form>
     49   </body>
     50 </html>
     51