TILNOTE SUM (Summarization with ChatGPT)

Summarize long text into parts with ChatGPT.

O que é TILNOTE SUM (Summarization with ChatGPT)?

TILNOTE SUM (Summarization with ChatGPT) é uma extensão do Chrome desenvolvida por https://tilnote.io, e sua principal característica é "Summarize long text into parts with ChatGPT.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão TILNOTE SUM (Summarization with ChatGPT)

Baixe arquivos de extensão TILNOTE SUM (Summarization with ChatGPT) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome TILNOTE SUM (Summarization with ChatGPT) TILNOTE SUM (Summarization with ChatGPT)
ID hbbcnochodmmfilmjabblhgflmlmmkha
URL Oficial https://chromewebstore.google.com/detail/tilnote-sum-summarization/hbbcnochodmmfilmjabblhgflmlmmkha
Descrição Summarize long text into parts with ChatGPT.
Tamanho do Arquivo 166 KB
Contagem de Instalações 327
Versão Atual 2.2
Última Atualização 2024-01-02
Data de Publicação 2023-05-08
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://tilnote.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://tilnote.io/sum
URL da Página de Ajuda https://tilnote.io/pages/6455c796001cccdffdf0ca63
URL da Página de Política de Privacidade https://tilnote.io/privacy
Idiomas Suportados 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"
            ]
        }
    ]
}