Reddit Summarizer
A GPT tool that abstracts reddit content
什么是Reddit Summarizer?
Reddit Summarizer是由GabrielAgrela开发的Chrome扩展程序,该扩展的主要功能是“A GPT tool that abstracts reddit content”。
扩展截图
下载Reddit Summarizer扩展crx文件
下载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 |
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\/*" ] } |