Plink extension icons
======================

This folder should contain three PNG icons referenced by manifest.json:

  16.png   -> 16x16   (toolbar / context menu)
  48.png   -> 48x48   (extensions management page)
  128.png  -> 128x128 (install dialog / Chrome Web Store)

They are NOT included in this repo (binary PNGs can't be generated here).

To add them:
  1. Create/export a square logo as PNG at the three sizes above.
     A simple "P" mark on a purple-to-emerald gradient matches the UI.
  2. Drop the files into this `icons/` folder with the exact names above.

Notes:
  - Chrome will still load the unpacked extension if the icons are missing;
    it just shows a default placeholder icon and may log a minor warning.
  - The 128px icon is also used as the notification icon in background.js.

Quick way to generate placeholders (requires ImageMagick, optional):
  magick -size 128x128 gradient:#7c5cff-#22c98a -gravity center \
    -pointsize 72 -fill white -annotate 0 P 128.png
  magick 128.png -resize 48x48 48.png
  magick 128.png -resize 16x16 16.png
