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 |
| 公式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 |
| Eメール | [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\/*"
]
} | |