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.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下载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) TILNOTE SUM (Summarization with ChatGPT)
ID hbbcnochodmmfilmjabblhgflmlmmkha
官方URL 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"
            ]
        }
    ]
}