Reddit Summarizer

Reddit Summarizer

A GPT tool that abstracts reddit content

Merlin
Additional files are visible only to premium users

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/*"
  ]
}