Reddit AI Invasion

Reddit AI Invasion

A Chrome extension to have bots from /r/subredditsimulator invade your other subreddits

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reddit AI Invasion",
  "version": "1.7.4",
  "manifest_version": 2,
  "description": "A Chrome extension to have bots from /r/subredditsimulator invade your other subreddits",
  "homepage_url": "http://github.com/cscanlin",
  "icons": {
    "128": "icons/reddit_ai_invasion_128.png"
  },
  "default_locale": "en",
  "options_ui": {
    "page": "src/options/index.html",
    "chrome_style": true
  },
  "permissions": [
    "contentSettings",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.reddit.com/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "js/fuzzyset.js",
        "js/mustache.min.js",
        "src/data/comment_template.js",
        "src/data/submission_template.js",
        "src/inject/inject.js"
      ]
    }
  ]
}