Recap Reddit

Recap Reddit

Automatically turn Reddit posts into recap videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Recap Reddit",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Automatically turn Reddit posts into recap videos.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "background.js"
  ],
  "content_scripts": [
    {
      "js": [
        "background.js"
      ],
      "matches": [
        "http://*.reddit.com/*",
        "https://*.reddit.com/*"
      ]
    }
  ]
}