Reddit Under 100

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

Wat is Reddit Under 100?

Reddit Under 100 is een Chrome-extensie ontwikkeld door https://www.clayburngriffin.com, en de belangrijkste functie is "Highlights threads that contain under 100 comments. Toggle with ~ key.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Reddit Under 100

Download Reddit Under 100-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Reddit Under 100 Reddit Under 100
ID gockmhepknafokmfmpdkdmffnleaddmd
Officiële URL https://chromewebstore.google.com/detail/reddit-under-100/gockmhepknafokmfmpdkdmffnleaddmd
Beschrijving Highlights threads that contain under 100 comments. Toggle with ~ key.
Bestandsgrootte 13.37 KB
Aantal Installaties 14
Huidige Versie 2.0
Laatst Bijgewerkt 2023-07-20
Publicatiedatum 2016-07-13
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://www.clayburngriffin.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://www.clayburngriffin.com/under100
Ondersteunde Talen 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
}