20 lines
		
	
	
		
			489 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			489 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>Popup</title>
 | 
						|
    <style>
 | 
						|
        /* Add your CSS styles here */
 | 
						|
    </style>
 | 
						|
</head>
 | 
						|
<body style="width: 300px;">
 | 
						|
    <p>Last Call URL Date: <span id="lastCallDate"></span></p>
 | 
						|
    <p>Result: <span id="result"></span></p>
 | 
						|
    <br />
 | 
						|
    <button id="callURLBtn">Call URL</button>
 | 
						|
 | 
						|
    <script src="./popup.js"></script>
 | 
						|
</body>
 | 
						|
</html>
 |