New Reddit Enhancements & Chemo (nREC)

Improvements for new Reddit: subreddit filters, ad-block, user-tags, video downloading, and more.

¿Qué es New Reddit Enhancements & Chemo (nREC)?

New Reddit Enhancements & Chemo (nREC) es una extensión de Chrome desarrollada por Lawrence Sim, y su función principal es "Improvements for new Reddit: subreddit filters, ad-block, user-tags, video downloading, and more.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión New Reddit Enhancements & Chemo (nREC)

Descarga archivos de extensión New Reddit Enhancements & Chemo (nREC) 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

                        FEATURES:

Wide mode. Card layouts and post comment views can expand up to a custom set max-width.

Clean top bar. Hide the "Advertise" and "Shop Avatars" buttons on the top bar.

Hide trending and sidebar.  Hide the trending strip and sidebar on the r/all and r/popular feed

Fix image previews. Clicking on image previews take you directly to the image itself, instead of to the comment section. Image preview heights in gallery mode are fixed such that images no longer get vertically cut off.

Direct image links. Bypass Reddit forcing direct image links onto a preview page/template. Adjusts embedded images in comments to link to source image (instead of webp).

Add video download links. When viewing a video, download links are provided, using both a direct link and a redirect through rapidsave.com. Note, does not work in image previews, view the image as a thread.

Reddit Chemo Filter feed posts by subreddit as well as removal of some advertisements.

User Tags. Add tags to usernames.

USAGE:

On installation, most features are enabled by default. However, features like Reddit Chemo and user tags need to be populated to see their full effects. Features can be enabled, disabled, and modified through the extension's UI (accessed by clicking the extension logo on the browser Toolbar).

Most features, such as dark mode, wide mode, UI cleanup, fix image previews, and add video download links can simply be toggled in the UI using the various controls.

The wide mode has an additional option, where the max-width can be set. Must be a valid CSS value, or the default of `1600px` will apply.

Add video download links only adds link when viewing a thread for a video. It does not work in expanded videos from posts in the feed. In some cases, the video links may not appear correctly. You may try disabling and re-enabling this feature to force it. Otherwise, check your ad-block settings, as some ad-blockers (AdBlockPlus in particular) seems to be aggressive in removing the download links.

To add subreddits to Reddit Chemo's ban list, simply click the "ban" button next to posts in the r/all or r/popular feed from subreddits you do not wish to see. By default, a small strip will be shown in place of the blocked post with an option to remove the subreddit from the ban. To hide this strip, toggle "Show/hide blocked posts" in the extension's UI.

To remove subreddits from the ban, you can use the strip from blocked posts (if "Show blocked posts" is toggled on) to remove the subreddit from the ban list. Alternatively, you can click "Edit banned list" in the extension's UI to view the full ban list and remove subreddits from it. The effects of removing subreddits from the ban list may not take effect until a page change or refresh.

User Tags. Next to every username (including your own) you will see an empty 'tag' icon (or an active tag, if one was set). To set or edit this value, simply click once and type to edit the text. When in edit mode inside of a tag, click the tag again to cycle different tag colors. Click outside the tag or press 'enter' to save changes or press 'esc' to cancel changes. If the new tag value is set as empty or whitespace, the tag will be removed.

All existing user tags may also be viewed and edited from the extension's UI. Click "Edit user tags" to get a list of all existing user tags and edit individual tags as necessary.                    

Información Básica de la Extensión

Nombre New Reddit Enhancements & Chemo (nREC) New Reddit Enhancements & Chemo (nREC)
ID bjnmegcnfngcoknlecbbmkpfkhbaiglh
URL Oficial https://chromewebstore.google.com/detail/new-reddit-enhancements-c/bjnmegcnfngcoknlecbbmkpfkhbaiglh
Descripción Improvements for new Reddit: subreddit filters, ad-block, user-tags, video downloading, and more.
Tamaño del Archivo 71.59 KB
Cantidad de Instalaciones 366
Versión Actual 0.7.7
Última Actualización 2024-03-01
Fecha de Publicación 2022-08-25
Calificación 3.17/5 Total de 6 Calificaciones
Desarrollador Lawrence Sim
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://lawrenzo.com/p/reddit-extension
URL de la Página de Ayuda https://lawrenzo.com/p/reddit-extension
URL de la Página de Política de Privacidad https://lawrenzo.com/p/reddit-extension
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "New Reddit Enhancements & Chemo (nREC)",
    "description": "Improvements for new Reddit: subreddit filters, ad-block, user-tags, video downloading, and more.",
    "version": "0.7.7",
    "icons": {
        "48": "images\/logo_48.png",
        "96": "images\/logo_96.png"
    },
    "action": {
        "default_icon": "images\/logo_48.png",
        "default_title": "New Reddit Enhancements & Chemo (nREC)",
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/reddit.com\/*",
        "*:\/\/i.redd.it\/*",
        "*:\/\/external-preview.redd.it\/*",
        "*:\/\/preview.redd.it\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "direct_image",
                "enabled": true,
                "path": "dnr_direct_image.json"
            }
        ]
    },
    "background": {
        "service_worker": "background\/chemo.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "css": [
                "styles\/sidebar.css",
                "styles\/wide-mode.css",
                "styles\/chemo.css",
                "styles\/video-downloader.css",
                "styles\/usertag.css"
            ],
            "js": [
                "browser\/is-chrome.js",
                "browser\/dark-mode.js",
                "lib\/watcher.js",
                "lib\/chemo.js",
                "lib\/usertag.js",
                "browser\/wide-mode.js",
                "browser\/clean-topbar.js",
                "browser\/sidebar-trending.js",
                "browser\/chemo.js",
                "browser\/image-previews.js",
                "browser\/image-direct.js",
                "browser\/video-downloader.js",
                "browser\/usertag.js"
            ]
        }
    ]
}