Reddit Comment Replacer

Reddit Comment Replacer

Replace your historical reddit comments with any text of your choosing. Do not use copyrighted text! Reddit signed a deal with Google to use their content as LLM training data, and we wouldn't want them to get in trouble.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Replace historical reddit content",
  "manifest_version": 2,
  "name": "Replace Reddit Comments",
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "*://reddit.com/*",
        "*://old.reddit.com/*",
        "*://mobile.reddit.com/*",
        "*://*.reddit.com/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_title": "Reddit Content Replacer",
    "default_icon": {
      "48": "logo48.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{07b2eeb0-c434-4985-864d-b542b9aa45b6}"
    }
  }
}