Old Reddit For Chrome

For those who prefer the old reddit interface.

¿Qué es Old Reddit For Chrome?

Old Reddit For Chrome es una extensión de Chrome desarrollada por Team Doko, y su función principal es "For those who prefer the old reddit interface.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Old Reddit For Chrome

Descarga archivos de extensión Old Reddit For Chrome 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

                        If you're someone who likes the old reddit interface you'll love this extension.

Welcome to Old Reddit For Chrome!

- Switch to the old reddit interface.
- Disable custom subreddit styles. (Use default styles.)
- Browse without logging in.
- No more annoying popups.
- You can set the extension to work only in incognito mode.

Note: To use this extension in incognito mode, you need to enable it in incognito mode:

- Click the extension icon in the address bar.
- Click manage extensions.
- Click the Details button in the extension.
- Toggle "Allow in incognito mode".

To configure this extension:

- Click the extension icon in the address bar.
- Click the menu button (three dots) next to the extension name.
- Click Options.
- Select your preferences.                    

Información Básica de la Extensión

Nombre Old Reddit For Chrome Old Reddit For Chrome
ID hkcalkecmjhbkgkkfdblgdikfgoglmlc
URL Oficial https://chromewebstore.google.com/detail/old-reddit-for-chrome/hkcalkecmjhbkgkkfdblgdikfgoglmlc
Descripción For those who prefer the old reddit interface.
Tamaño del Archivo 233 KB
Cantidad de Instalaciones 102
Versión Actual 1.3.1
Última Actualización 2022-08-12
Fecha de Publicación 2021-12-28
Desarrollador Team Doko
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://teamdoko.com/products/old-reddit-for-safari/
URL de la Página de Ayuda https://teamdoko.com/support/
URL de la Página de Política de Privacidad https://teamdoko.com/privacy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Reddit For Chrome",
    "description": "For those who prefer the old reddit interface.",
    "version": "1.3.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "*:\/\/*.reddit.com\/*"
    ],
    "icons": {
        "16": "\/images\/old_reddit_16.png",
        "32": "\/images\/old_reddit_32.png",
        "48": "\/images\/old_reddit_48.png",
        "128": "\/images\/old_reddit_128.png"
    },
    "options_ui": {
        "page": "\/options\/index.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/reddit.com\/*",
                "*:\/\/www.reddit.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "\/content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/old.reddit.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "\/content_old_reddit.js"
            ]
        }
    ]
}