Reddit Summarizer
A GPT tool that abstracts reddit content
Reddit Summarizerคืออะไร?
Reddit Summarizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย GabrielAgrela และคุณลักษณะหลักของมันคือ "A GPT tool that abstracts reddit content"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Summarizer
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*" ] } |