Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "LensAI: Export ChatGPT & Claude to PDF - Sidebar Navigator",
"version": "2.0.1",
"description": "Export ChatGPT, Claude & Gemini chats to PDF instantly. Features an Apple-style floating sidebar for fast navigation.",
"permissions": [
"activeTab"
],
"action": {
"default_title": "LensAI Sidebar",
"default_icon": "icon128.png"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"*:\/\/gemini.google.com\/*",
"*:\/\/chatgpt.com\/*",
"*:\/\/claude.ai\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/gemini.google.com\/*",
"*:\/\/chatgpt.com\/*",
"*:\/\/claude.ai\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
}