TILNOTE SUM (Summarization with ChatGPT)
Summarize long text into parts with ChatGPT.
什麼是TILNOTE SUM (Summarization with ChatGPT)?
TILNOTE SUM (Summarization with ChatGPT)是由https://tilnote.io開發的Chrome擴展程式,該擴展的主要功能是“Summarize long text into parts with ChatGPT.”。
擴展截圖
下載TILNOTE SUM (Summarization with ChatGPT)擴展crx文件
下載TILNOTE SUM (Summarization with ChatGPT)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | TILNOTE SUM (Summarization with ChatGPT) |
ID | hbbcnochodmmfilmjabblhgflmlmmkha |
官方網址 | https://chromewebstore.google.com/detail/tilnote-sum-summarization/hbbcnochodmmfilmjabblhgflmlmmkha |
簡介 | Summarize long text into parts with ChatGPT. |
檔案大小 | 166 KB |
安裝次數 | 327 |
目前版本 | 2.2 |
更新時間 | 2024-01-02 |
上架時間 | 2023-05-08 |
評分 | 5.00/5 共 1 次評分 |
開發者 | https://tilnote.io |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://tilnote.io/sum |
說明頁面URL | https://tilnote.io/pages/6455c796001cccdffdf0ca63 |
隱私政策頁面URL | https://tilnote.io/privacy |
支援的語言 | 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" ] } ] } |