GPT Summary
Summary of any webpage by GPT
Cos'è GPT Summary?
GPT Summary è un'estensione di Chrome sviluppata da xcv58, e la sua funzione principale è "Summary of any webpage by GPT".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GPT Summary
Scarica i file di estensione GPT Summary in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Summarizes webpages with `Alt+S`. Default to selected text, otherwise summarizes entire page.
GPT powered. Informazioni di Base sull'Estensione
| Nome | |
| ID | nmkelbcciejibomjfdhaifcdkknoieii |
| URL Ufficiale | https://chromewebstore.google.com/detail/gpt-summary/nmkelbcciejibomjfdhaifcdkknoieii |
| Descrizione | Summary of any webpage by GPT |
| Dimensione del File | 17.24 KB |
| Conteggio Installazioni | 42 |
| Versione Corrente | 0.0.2 |
| Ultimo Aggiornamento | 2023-02-13 |
| Data di Pubblicazione | 2023-02-13 |
| Sviluppatore | xcv58 |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/xcv58/gpt-summary |
| URL della Pagina di Aiuto | https://github.com/xcv58/gpt-summary/issues |
| Lingue Supportate | 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"
}
} | |