A read-only AI for your browser via claude, which helps improve your productivity.
3
stars
8
commits
JavaScript
primary language
Aug 27, 2026
updated
PageLens is a Chrome extension that lets you ask an AI questions about the page you're currently looking at, summarize it, explain it simply, or flag things worth noticing (fees, fine print, deadlines, data collection, etc).
It is strictly read-only. PageLens only reads the visible text of the current tab and sends it to Claude for analysis. It never clicks, types, fills forms, or submits anything on your behalf, unlike most "AI browser agent" extensions, there is no action/automation layer at all, which keeps the trust and risk profile much simpler.
chrome.storage, sent directly from your browser to Anthropic's API —
it never passes through any third-party server).chrome://extensions in Chrome.``` manifest.json # MV3 manifest — activeTab, scripting, sidePanel, storage only background.js # Opens the side panel on toolbar click sidepanel.html/css # Side panel UI sidepanel.js # Page reading + Anthropic API calls + chat rendering icons/ # Toolbar icons ```
| Permission | Why |
|---|---|
activeTab | Read the current tab only when you actively use the extension |
scripting | Inject a read-only text-extraction function into the page |
sidePanel | Show the chat UI in Chrome's side panel |
storage | Save your API key/model choice locally |
host_permissions: <all_urls> | Allow reading any page you choose to ask about |
No cookies, no webRequest, no ability to modify page content or
navigate — the extension physically cannot take actions on a page, only
read it.
MIT — do whatever you like with it.
8 commits
JavaScript
55.2%
CSS
27.5%
HTML
17.3%
A read-only AI for your browser via claude, which helps improve your productivity.
3
stars
8
commits
JavaScript
primary language
Aug 27, 2026
updated
PageLens is a Chrome extension that lets you ask an AI questions about the page you're currently looking at, summarize it, explain it simply, or flag things worth noticing (fees, fine print, deadlines, data collection, etc).
It is strictly read-only. PageLens only reads the visible text of the current tab and sends it to Claude for analysis. It never clicks, types, fills forms, or submits anything on your behalf, unlike most "AI browser agent" extensions, there is no action/automation layer at all, which keeps the trust and risk profile much simpler.
chrome.storage, sent directly from your browser to Anthropic's API —
it never passes through any third-party server).chrome://extensions in Chrome.``` manifest.json # MV3 manifest — activeTab, scripting, sidePanel, storage only background.js # Opens the side panel on toolbar click sidepanel.html/css # Side panel UI sidepanel.js # Page reading + Anthropic API calls + chat rendering icons/ # Toolbar icons ```
| Permission | Why |
|---|---|
activeTab | Read the current tab only when you actively use the extension |
scripting | Inject a read-only text-extraction function into the page |
sidePanel | Show the chat UI in Chrome's side panel |
storage | Save your API key/model choice locally |
host_permissions: <all_urls> | Allow reading any page you choose to ask about |
No cookies, no webRequest, no ability to modify page content or
navigate — the extension physically cannot take actions on a page, only
read it.
MIT — do whatever you like with it.
8 commits
JavaScript
55.2%
CSS
27.5%
HTML
17.3%