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": "ChatGPT Webpage Summarizer", "version": "3.4", "description": "Summarize web pages using OpenAI's GPT-4 model", "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "permissions": [ "activeTab", "scripting", "storage" ], "host_permissions": [ "https:\/\/heroku-extpay-summary-f71b3832cf7a.herokuapp.com\/" ], "action": { "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/extensionpay.com\/*" ], "js": [ "ExtPay.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "ExtPay.js" ], "matches": [ "<all_urls>" ] } ] }