GPT Summary
Summary of any webpage by GPT
What is GPT Summary?
GPT Summary is a Chrome extension developed by xcv58, and its main feature is "Summary of any webpage by GPT".
Extension Screenshots
Download GPT Summary Extension CRX File
Download GPT Summary extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Summarizes webpages with `Alt+S`. Default to selected text, otherwise summarizes entire page. GPT powered.
Extension Basic Information
Name | GPT Summary |
ID | nmkelbcciejibomjfdhaifcdkknoieii |
Official URL | https://chromewebstore.google.com/detail/gpt-summary/nmkelbcciejibomjfdhaifcdkknoieii |
Description | Summary of any webpage by GPT |
File Size | 17.24 KB |
Installation Count | 42 |
Current Version | 0.0.2 |
Last Updated | 2023-02-13 |
Publish Date | 2023-02-13 |
Developer | xcv58 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/xcv58/gpt-summary |
Help Page URL | https://github.com/xcv58/gpt-summary/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPT Summary", "description": "Summary of any webpage by GPT", "version": "0.0.2", "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "activeTab", "scripting", "storage" ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+S", "mac": "Alt+S" } } }, "action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } } |