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": "Webpage Content Extractor - Chat with any Webpage",
"version": "1.0.0",
"description": "Extract text from any webpage and chat with ChatGPT, Claude, Gemini etc. Free webpage chat tool with custom prompts.",
"permissions": [
"activeTab",
"clipboardWrite",
"storage",
"scripting"
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"options_ui": {
"page": "options\/options.html",
"open_in_tab": true
},
"background": {
"service_worker": "background.js"
},
"commands": {
"_execute_action": {
"description": "Open the extension popup"
},
"extract-and-copy": {
"description": "Extract page content and copy to clipboard"
},
"extract-with-prompt": {
"description": "Extract page content with selected prompt and copy"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}