- Popup header: tray icon + "Trailhead Path Bookmarker" title - HTML <title>, electron-builder productName, and tray tooltip all match - Popup width budget now also factors in the header's intrinsic width (icon + title + actions), so the brand never gets ellipsized — measured via h1 scrollWidth so overflow:hidden doesn't lie about content size
13 lines
429 B
HTML
13 lines
429 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' http://localhost:5174 ws://localhost:5174" />
|
|
<title>Trailhead Path Bookmarker</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|