TILNOTE SUM (Summarization with ChatGPT)

Summarize long text into parts with ChatGPT.

Co je TILNOTE SUM (Summarization with ChatGPT)?

TILNOTE SUM (Summarization with ChatGPT) je rozšíření Chrome vyvinuté https://tilnote.io, a jeho hlavní funkcí je „Summarize long text into parts with ChatGPT.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření TILNOTE SUM (Summarization with ChatGPT)

Stáhněte si soubory rozšíření TILNOTE SUM (Summarization with ChatGPT) ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název TILNOTE SUM (Summarization with ChatGPT) TILNOTE SUM (Summarization with ChatGPT)
ID hbbcnochodmmfilmjabblhgflmlmmkha
Oficiální URL https://chromewebstore.google.com/detail/tilnote-sum-summarization/hbbcnochodmmfilmjabblhgflmlmmkha
Popis Summarize long text into parts with ChatGPT.
Velikost souboru 166 KB
Počet instalací 327
Aktuální Verze 2.2
Poslední Aktualizace 2024-01-02
Datum Vydání 2023-05-08
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://tilnote.io
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://tilnote.io/sum
URL Stránky Nápovědy https://tilnote.io/pages/6455c796001cccdffdf0ca63
URL Stránky Zásad Ochrany Soukromí https://tilnote.io/privacy
Podporované Jazyky 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"
            ]
        }
    ]
}