Reddit Slideshow

Slide Show for Reddit web just like in the app

¿Qué es Reddit Slideshow?

Reddit Slideshow es una extensión de Chrome desarrollada por edgework, y su función principal es "Slide Show for Reddit web just like in the app".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Reddit Slideshow

Descarga archivos de extensión Reddit Slideshow en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        The Reddit app provides a slideshow view. The website does not.  Reddit Slideshow implements it.  

Note: You will need a Reddit account and be signed into Reddit for this to work.  For some reason Reddit when not signed in is completely different than Reddit when you're signed in and the not signed in mode totally breaks slideshows.  An update is forthcoming to deal with it. 

Your privacy is respected. There is no tracking or any other hidden behaviors in this extension. The source code is readable for anyone who wants to read it to verify these statements.  

This extension DOES allow Reddit to track its usage along with the other tracking Reddit does on its website. None of this information is transmitted outside of Reddit including to the author of this extension.                    

Información Básica de la Extensión

Nombre Reddit Slideshow Reddit Slideshow
ID jnjpgagcbhkomjfkfimifpddphbiilkh
URL Oficial https://chromewebstore.google.com/detail/reddit-slideshow/jnjpgagcbhkomjfkfimifpddphbiilkh
Descripción Slide Show for Reddit web just like in the app
Tamaño del Archivo 36.16 KB
Cantidad de Instalaciones 689
Versión Actual 1.1.7
Última Actualización 2023-11-23
Fecha de Publicación 2021-09-06
Calificación 4.44/5 Total de 9 Calificaciones
Desarrollador edgework
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
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
}