Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "WebSage - AI Browser Extension", "short_name": "WebSage", "version": "0.1.0", "description": "Generate summary and explanation of webpages using OpenAI's GPT-4o and GPT-4o mini models. Use custom prompts to do more.", "permissions": [ "storage", "tabs", "contextMenus", "sidePanel" ], "background": { "service_worker": "sw.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end" } ], "options_page": "options\/options.html", "action": { "default_title": "WebSage", "default_icon": { "16": "static\/icon-16.png", "32": "static\/icon-32.png", "48": "static\/icon-48.png", "128": "static\/icon-128.png" } }, "icons": { "48": "static\/icon-48.png", "128": "static\/icon-128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Alt+I" } } }, "homepage_url": "https:\/\/browsernative.com\/websage-chatgpt-chrome-extension\/", "side_panel": { "default_path": "\/sidepanel\/sidepanel.html" }, "minimum_chrome_version": "114" }