Reddit Slideshow

Reddit Slideshow

Slide Show for Reddit web just like in the app

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reddit Slideshow",
  "description": "Slide Show for Reddit web just like in the app",
  "version": "1.1.7",
  "permissions": [
    "activeTab",
    "*://*.reddit.com/*",
    "*://*.redgifs.com/*",
    "*://*.gfycat.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "*://*.reddit.com/*"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Reddit Slideshow"
  },
  "icons": {
    "32": "images/icon-32-opaque.png",
    "48": "images/icon-48-opaque.png",
    "128": "images/icon-128-opaque.png"
  },
  "manifest_version": 2
}