| 1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <link rel="stylesheet" href="popup.css">
- </head>
- <body>
- <div class="container">
- <h1>My Firefox Extension</h1>
- <button id="inject-button">Inject Script</button>
- <button id="navigate-button">Navigate Tab</button>
- <input type="text" id="navigation-url" placeholder="https://example.com">
-
- <div class="storage-section">
- <h2>Saved Data</h2>
- <input type="text" id="storage-key" placeholder="Key">
- <input type="text" id="storage-value" placeholder="Value">
- <div class="button-group">
- <button id="save-data">Save</button>
- <button id="load-data">Load</button>
- </div>
- <div id="storage-result"></div>
- </div>
-
- <div id="status"></div>
- </div>
- <script src="popup.js"></script>
- </body>
- </html>
|