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. 擴展基本資訊
| 名稱 | |
| ID | jhbpjalfakhbaiojoaejjnjbminnacak |
| 官方網址 | 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\/*"
]
} | |