A browser extension that lets you summarize any webpage and ask questions using AI.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

agents.md and send button style change

+19 -5
+15
AGENTS.md
··· 1 + # AGENTS.md 2 + 3 + ## Project Type 4 + Chrome Extension (Manifest V3) - vanilla JS/HTML/CSS, no build step. 5 + 6 + ## Architecture 7 + - `popup/popup.js` - Main UI, chat, and summary generation 8 + - `scripts/content.js` - Extracts text from the current webpage 9 + - `scripts/background.js` - API communication with Ollama/OpenAI-compatible endpoints 10 + - `options/options.js` - Settings page logic 11 + - `rules.json` - **NOT lint rules**; Chrome declarativeNetRequest rule that modifies CORS headers for `localhost:11434` API calls 12 + 13 + ## Settings Storage 14 + - User settings: `chrome.storage.sync` 15 + - Session cache (summaries, chat history): `chrome.storage.session`
+4 -5
popup/popup.css
··· 638 638 width: 32px; 639 639 height: 32px; 640 640 border-radius: 6px; 641 - border: 1px solid var(--border); 642 - background: var(--bg); 643 - color: var(--icon-btn); 641 + border: none; 642 + background: var(--primary-bg); 643 + color: var(--primary-text); 644 644 cursor: pointer; 645 645 display: flex; 646 646 align-items: center; ··· 650 650 } 651 651 652 652 .chat-send-btn:hover { 653 - border-color: var(--border-hover); 654 - color: var(--icon-btn-hover); 653 + background: var(--primary-bg-hover); 655 654 } 656 655 657 656 .chat-send-btn:disabled {