Home | History | Annotate | Download | only in basic
      1 <!DOCTYPE html>
      2 <html>
      3   <head>
      4     <title>Popup</title>
      5     <link href="popup.css" rel="stylesheet">
      6     <script src="popup.js"></script>
      7   </head>
      8   <body>
      9     <h1>BrowsingData API Sample</h1>
     10     <div role="main">
     11       <form>
     12         <label for="timeframe">Remove all browsing data from:</label>
     13         <select id="timeframe">
     14           <option value="hour">the past hour</option>
     15           <option value="day">the past day</option>
     16           <option value="week">the past week</option>
     17           <option value="4weeks">the past four weeks</option>
     18           <option value="forever">the beginning of time</option>
     19         </select>
     20         <button id="button">OBLITERATE!</button>
     21       </form>
     22     </div>
     23   </body>
     24 </html>
     25