TILNOTE SUM (Summarization with ChatGPT)
Summarize long text into parts with ChatGPT.
¿Qué es TILNOTE SUM (Summarization with ChatGPT)?
TILNOTE SUM (Summarization with ChatGPT) es una extensión de Chrome desarrollada por https://tilnote.io, y su función principal es "Summarize long text into parts with ChatGPT.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión TILNOTE SUM (Summarization with ChatGPT)
Descarga archivos de extensión TILNOTE SUM (Summarization with ChatGPT) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | TILNOTE SUM (Summarization with ChatGPT) |
ID | hbbcnochodmmfilmjabblhgflmlmmkha |
URL Oficial | https://chromewebstore.google.com/detail/tilnote-sum-summarization/hbbcnochodmmfilmjabblhgflmlmmkha |
Descripción | Summarize long text into parts with ChatGPT. |
Tamaño del Archivo | 166 KB |
Cantidad de Instalaciones | 327 |
Versión Actual | 2.2 |
Última Actualización | 2024-01-02 |
Fecha de Publicación | 2023-05-08 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://tilnote.io |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://tilnote.io/sum |
URL de la Página de Ayuda | https://tilnote.io/pages/6455c796001cccdffdf0ca63 |
URL de la Página de Política de Privacidad | https://tilnote.io/privacy |
Idiomas Soportados | 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" ] } ] } |