TILNOTE SUM (Summarization with ChatGPT)

Summarize long text into parts with ChatGPT.

Τι είναι το TILNOTE SUM (Summarization with ChatGPT);

Το TILNOTE SUM (Summarization with ChatGPT) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://tilnote.io, και η κύρια λειτουργία του είναι "Summarize long text into parts with ChatGPT.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης TILNOTE SUM (Summarization with ChatGPT)

Λήψη αρχείων επέκτασης 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"
            ]
        }
    ]
}