Reddit Summarizer

A GPT tool that abstracts reddit content

Qu'est-ce que Reddit Summarizer ?

Reddit Summarizer est une extension Chrome développée par GabrielAgrela, et sa fonction principale est "A GPT tool that abstracts reddit content".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Reddit Summarizer

Téléchargez les fichiers d'extension Reddit Summarizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Reddit Summarizer Reddit Summarizer
ID jhbpjalfakhbaiojoaejjnjbminnacak
URL Officiel https://chromewebstore.google.com/detail/reddit-summarizer/jhbpjalfakhbaiojoaejjnjbminnacak
Description A GPT tool that abstracts reddit content
Taille du Fichier 38.96 KB
Nombre d'Installations 24
Version Actuelle 1.2.4
Dernière Mise à Jour 2023-05-13
Date de Publication 2023-05-10
Développeur GabrielAgrela
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
    ]
}