src/popup.html (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Form Autocomplete</title> <style> body { width: 400px; padding: 16px; font-family: system-ui, -apple-system, sans-serif; } .container { display: flex; flex-direction: column; gap: 12px; } button { background-color: #2563eb; color: white; border: none; padding: 8px 16px; border-radius: 6px; cursor: pointer; font-size: 14px; font-weight: 500; transition: background-color 0.2s; } button:hover { background-color: #1d4ed8; } button:disabled { background-color: #93c5fd; cursor: not-allowed; } .status { font-size: 14px; color: #374151; margin-top: 8px; } .error { color: #dc2626; } .success { color: #059669; } .loading { color: #2563eb; display: flex; align-items: center; gap: 8px; } .loading::after { content: ''; width: 16px; height: 16px; border: 2px solid #2563eb; border-right-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } .suggestions { margin-top: 16px; border-top: 1px solid #e5e7eb; padding-top: 16px; } .suggestion-item { display: flex; justify-content: space-between; align-items: center; padding: 8px; border: 1px solid #e5e7eb; border-radius: 4px; margin-bottom: 8px; } .suggestion-info { flex: 1; } .suggestion-label { font-weight: 500; color: #1f2937; } .suggestion-value { color: #4b5563; font-size: 14px; } .suggestion-confidence { font-size: 12px; color: #6b7280; } .accept-button { background-color: #10b981; margin-left: 8px; padding: 4px 8px; font-size: 12px; } .accept-button:hover { background-color: #059669; } .accept-all { background-color: #10b981; margin-top: 8px; } .accept-all:hover { background-color: #059669; } .no-suggestions { color: #6b7280; font-style: italic; text-align: center; padding: 16px; } .controls { display: flex; justify-content: flex-end; gap: 8px; margin-bottom: 8px; } .regenerate { background-color: #4b5563; } .regenerate:hover { background-color: #374151; } </style> </head> <body> <div class="container"> <h2>Form Autocomplete</h2> <div id="status" class="status"></div> <div id="apiKeyForm" style="display: none;"> <label for="apiKey">Enter Gemini API Key:</label> <input type="text" id="apiKey" name="apiKey" required> <button id="saveApiKey">Save</button> </div> <div id="suggestions" class="suggestions" style="display: none;"> <div class="controls"> <button id="regenerate" class="regenerate" style="display: none;">Re-generate Suggestions</button> </div> <div id="suggestionsList"></div> <button id="acceptAll" class="accept-all" style="display: none;">Accept All Suggestions</button> </div> </div> <script src="popup.js"></script> </body> </html> |