Fix extension icons and AMPP autofill
- Generate missing chrome-extension/images/ icons (16, 48, 128px) that were absent from repo, causing 'Could not load manifest' error - Fix AMPP API key field: add readonly+onfocus to block Bitwarden/browser autofill Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
017d73f48c
commit
08c138ca46
4 changed files with 1 additions and 1 deletions
BIN
chrome-extension/images/icon-128.png
Normal file
BIN
chrome-extension/images/icon-128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 600 B |
BIN
chrome-extension/images/icon-16.png
Normal file
BIN
chrome-extension/images/icon-16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 118 B |
BIN
chrome-extension/images/icon-48.png
Normal file
BIN
chrome-extension/images/icon-48.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 234 B |
|
|
@ -571,7 +571,7 @@ body::before{content:'';position:fixed;inset:0;background:radial-gradient(ellips
|
|||
</div>
|
||||
<div class="form-group">
|
||||
<label class="form-label">API Key (Base64 credentials)</label>
|
||||
<input class="form-input" id="ampp-api-key" type="password" placeholder="Leave blank to keep existing" autocomplete="new-password"/>
|
||||
<input class="form-input" id="ampp-api-key" type="password" placeholder="Enter API key — leave blank to keep existing" autocomplete="off" readonly onfocus="this.removeAttribute('readonly')"/>
|
||||
<div class="form-hint" id="ampp-key-hint"></div>
|
||||
</div>
|
||||
<div class="btn-row">
|
||||
|
|
|
|||
Loading…
Reference in a new issue