Reddit Summarizer
A GPT tool that abstracts reddit content
Reddit Summarizer क्या है?
Reddit Summarizer GabrielAgrela द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A GPT tool that abstracts reddit content"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Summarizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } |