Reddit Summarizer
A GPT tool that abstracts reddit content
Cos'è Reddit Summarizer?
Reddit Summarizer è un'estensione di Chrome sviluppata da GabrielAgrela, e la sua funzione principale è "A GPT tool that abstracts reddit content".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit Summarizer
Scarica i file di estensione Reddit Summarizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | jhbpjalfakhbaiojoaejjnjbminnacak |
| URL Ufficiale | https://chromewebstore.google.com/detail/reddit-summarizer/jhbpjalfakhbaiojoaejjnjbminnacak |
| Descrizione | A GPT tool that abstracts reddit content |
| Dimensione del File | 38.96 KB |
| Conteggio Installazioni | 24 |
| Versione Corrente | 1.2.4 |
| Ultimo Aggiornamento | 2023-05-13 |
| Data di Pubblicazione | 2023-05-10 |
| Sviluppatore | GabrielAgrela |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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\/*"
]
} | |