Reddit Summarizer

A GPT tool that abstracts reddit content

Reddit Summarizer란 무엇입니까?

Reddit Summarizer은(는) GabrielAgrela에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A GPT tool that abstracts reddit content"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Reddit Summarizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}