Reddit Summarizer

A GPT tool that abstracts reddit content

Τι είναι το Reddit Summarizer;

Το Reddit Summarizer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον GabrielAgrela, και η κύρια λειτουργία του είναι "A GPT tool that abstracts reddit content".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Reddit Summarizer

Λήψη αρχείων επέκτασης Reddit Summarizer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        While browsing Reddit, this extension allows the user to sum the comment section of a post, get the sentiment analysis of it or a description containing a summary and the general sentiment of the original post's content (the text post), using chatGPT3.5 API.

By using this tool, the user can save time getting the general message of a post or community in particular posts.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Reddit Summarizer Reddit Summarizer
ID jhbpjalfakhbaiojoaejjnjbminnacak
Επίσημο URL https://chromewebstore.google.com/detail/reddit-summarizer/jhbpjalfakhbaiojoaejjnjbminnacak
Περιγραφή A GPT tool that abstracts reddit content
Μέγεθος Αρχείου 38.96 KB
Αριθμός Εγκαταστάσεων 24
Τρέχουσα Έκδοση 1.2.4
Τελευταία Ενημέρωση 2023-05-13
Ημερομηνία Δημοσίευσης 2023-05-10
Προγραμματιστής GabrielAgrela
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Reddit Summarizer",
    "version": "1.2.4",
    "description": "A GPT tool that abstracts reddit content",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                ".\/apiKeyManager.js",
                ".\/buttonManager.js",
                ".\/analysisManager.js",
                ".\/CSSManager.js",
                ".\/buttonManagerInPage.js",
                ".\/sentimentAnalyzer.js",
                ".\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/www.reddit.com\/*\/comments\/*",
        "https:\/\/api.openai.com\/*"
    ]
}