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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}