Reddit Under 100

Highlights threads that contain under 100 comments. Toggle with ~ key.

¿Qué es Reddit Under 100?

Reddit Under 100 es una extensión de Chrome desarrollada por https://www.clayburngriffin.com, y su función principal es "Highlights threads that contain under 100 comments. Toggle with ~ key.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Reddit Under 100

Descarga archivos de extensión Reddit Under 100 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

                        A simple plugin that highlights Reddit threads that have fewer than 100 comments.  Use the ~ key to toggle highlighting on and off.  Updated to work with New and Old Reddit alike.  (Option to use Q as toggle key like Version 1.0).  You can send feedback to @Clayburn on Twitter.                    

Información Básica de la Extensión

Nombre Reddit Under 100 Reddit Under 100
ID gockmhepknafokmfmpdkdmffnleaddmd
URL Oficial https://chromewebstore.google.com/detail/reddit-under-100/gockmhepknafokmfmpdkdmffnleaddmd
Descripción Highlights threads that contain under 100 comments. Toggle with ~ key.
Tamaño del Archivo 13.37 KB
Cantidad de Instalaciones 14
Versión Actual 2.0
Última Actualización 2023-07-20
Fecha de Publicación 2016-07-13
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://www.clayburngriffin.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://www.clayburngriffin.com/under100
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Under 100",
    "description": "Highlights threads that contain under 100 comments. Toggle with ~ key.",
    "version": "2.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "under.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "manifest_version": 3
}