rapid interations of server side app and firefox extension

This commit is contained in:
Bryan Van Deusen
2026-01-24 22:52:51 -05:00
commit b9b8048a2d
81 changed files with 9675 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
# Extension Icons
This directory should contain PNG icons for the extension in the following sizes:
- icon-16.png (16x16 pixels)
- icon-32.png (32x32 pixels)
- icon-48.png (48x48 pixels)
- icon-128.png (128x128 pixels)
## Quick Setup
You can generate placeholder icons using any image editor or online tool.
The icons should ideally be a simple "GS" logo or download icon.
## Recommended Design
- Background: #1976d2 (primary blue)
- Foreground: White
- Style: Simple, recognizable at small sizes
- Consider a download arrow or gallery grid icon
## Generate with ImageMagick
If you have ImageMagick installed:
```bash
# Create a simple colored square as placeholder
for size in 16 32 48 128; do
convert -size ${size}x${size} xc:#1976d2 icon-${size}.png
done
```
## Generate with Python/Pillow
```python
from PIL import Image, ImageDraw
for size in [16, 32, 48, 128]:
img = Image.new('RGB', (size, size), '#1976d2')
img.save(f'icon-{size}.png')
```
Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 B