TILNOTE SUM (Summarization with ChatGPT)
Summarize long text into parts with ChatGPT.
TILNOTE SUM (Summarization with ChatGPT) là gì?
TILNOTE SUM (Summarization with ChatGPT) là một tiện ích mở rộng Chrome được phát triển bởi https://tilnote.io, và tính năng chính của nó là "Summarize long text into parts with ChatGPT.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng TILNOTE SUM (Summarization with ChatGPT)
Tải xuống các tệp mở rộng TILNOTE SUM (Summarization with ChatGPT) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | TILNOTE SUM (Summarization with ChatGPT) |
ID | hbbcnochodmmfilmjabblhgflmlmmkha |
URL Chính Thức | https://chromewebstore.google.com/detail/tilnote-sum-summarization/hbbcnochodmmfilmjabblhgflmlmmkha |
Mô tả | Summarize long text into parts with ChatGPT. |
Kích Thước Tệp | 166 KB |
Số Lần Cài Đặt | 327 |
Phiên Bản Hiện Tại | 2.2 |
Cập Nhật Lần Cuối | 2024-01-02 |
Ngày Phát Hành | 2023-05-08 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://tilnote.io |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://tilnote.io/sum |
URL Trang Trợ Giúp | https://tilnote.io/pages/6455c796001cccdffdf0ca63 |
URL Trang Chính Sách Bảo Mật | https://tilnote.io/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |