TILNOTE SUM (Summarization with ChatGPT)
Summarize long text into parts with ChatGPT.
Cos'è TILNOTE SUM (Summarization with ChatGPT)?
TILNOTE SUM (Summarization with ChatGPT) è un'estensione di Chrome sviluppata da https://tilnote.io, e la sua funzione principale è "Summarize long text into parts with ChatGPT.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TILNOTE SUM (Summarization with ChatGPT)
Scarica i file di estensione TILNOTE SUM (Summarization with ChatGPT) 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
Summarization tool with ChatGPT Power. - Put any long text to summarize into the extension. - Tilnote sum will devide the text into parts and create summarizations for each part. - You can change prompt using template. (ex: translation, spell and grammar check, etc) - Summarize youtube. Just put youtube script on the extension Automatically.(free) We can't consume all information comming to us. This tool can help you save time and choose what information you want to read by using summarization with ChatGPT. Enjoy the power of summarization. v2 update - get current page's text with one button. - send text by clicking right click mouse.
Informazioni di Base sull'Estensione
Nome | TILNOTE SUM (Summarization with ChatGPT) |
ID | hbbcnochodmmfilmjabblhgflmlmmkha |
URL Ufficiale | https://chromewebstore.google.com/detail/tilnote-sum-summarization/hbbcnochodmmfilmjabblhgflmlmmkha |
Descrizione | Summarize long text into parts with ChatGPT. |
Dimensione del File | 166 KB |
Conteggio Installazioni | 327 |
Versione Corrente | 2.2 |
Ultimo Aggiornamento | 2024-01-02 |
Data di Pubblicazione | 2023-05-08 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://tilnote.io |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://tilnote.io/sum |
URL della Pagina di Aiuto | https://tilnote.io/pages/6455c796001cccdffdf0ca63 |
URL della Pagina della Politica sulla Privacy | https://tilnote.io/privacy |
Lingue Supportate | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "2.2", "default_locale": "en", "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "activeTab", "storage", "contextMenus", "scripting" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js", "turndown.js" ] } ] } |