TILNOTE SUM (Summarization with ChatGPT)
Summarize long text into parts with ChatGPT.
Qu'est-ce que TILNOTE SUM (Summarization with ChatGPT) ?
TILNOTE SUM (Summarization with ChatGPT) est une extension Chrome développée par https://tilnote.io, et sa fonction principale est "Summarize long text into parts with ChatGPT.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TILNOTE SUM (Summarization with ChatGPT)
Téléchargez les fichiers d'extension TILNOTE SUM (Summarization with ChatGPT) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | TILNOTE SUM (Summarization with ChatGPT) |
ID | hbbcnochodmmfilmjabblhgflmlmmkha |
URL Officiel | https://chromewebstore.google.com/detail/tilnote-sum-summarization/hbbcnochodmmfilmjabblhgflmlmmkha |
Description | Summarize long text into parts with ChatGPT. |
Taille du Fichier | 166 KB |
Nombre d'Installations | 327 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2024-01-02 |
Date de Publication | 2023-05-08 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://tilnote.io |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://tilnote.io/sum |
URL de la Page d'Aide | https://tilnote.io/pages/6455c796001cccdffdf0ca63 |
URL de la Page de Politique de Confidentialité | https://tilnote.io/privacy |
Langues Prises en Charge | 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" ] } ] } |