TILNOTE SUM (Summarization with ChatGPT)
Summarize long text into parts with ChatGPT.
Was ist TILNOTE SUM (Summarization with ChatGPT)?
TILNOTE SUM (Summarization with ChatGPT) ist eine Chrome-Erweiterung, die von https://tilnote.io entwickelt wurde, und ihr Hauptmerkmal ist "Summarize long text into parts with ChatGPT.".
Erweiterungsscreenshots
TILNOTE SUM (Summarization with ChatGPT)-Erweiterungs-CRX-Datei herunterladen
Laden Sie TILNOTE SUM (Summarization with ChatGPT)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | TILNOTE SUM (Summarization with ChatGPT) |
ID | hbbcnochodmmfilmjabblhgflmlmmkha |
Offizielle URL | https://chromewebstore.google.com/detail/tilnote-sum-summarization/hbbcnochodmmfilmjabblhgflmlmmkha |
Beschreibung | Summarize long text into parts with ChatGPT. |
Dateigröße | 166 KB |
Installationsanzahl | 327 |
Aktuelle Version | 2.2 |
Letztes Update | 2024-01-02 |
Veröffentlichungsdatum | 2023-05-08 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://tilnote.io |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://tilnote.io/sum |
Hilfeseite URL | https://tilnote.io/pages/6455c796001cccdffdf0ca63 |
URL der Datenschutzrichtlinien-Seite | https://tilnote.io/privacy |
Unterstützte Sprachen | 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" ] } ] } |