Reddit Under 100

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

Qu'est-ce que Reddit Under 100 ?

Reddit Under 100 est une extension Chrome développée par https://www.clayburngriffin.com, et sa fonction principale est "Highlights threads that contain under 100 comments. Toggle with ~ key.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Reddit Under 100

Téléchargez les fichiers d'extension Reddit Under 100 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Reddit Under 100 Reddit Under 100
ID gockmhepknafokmfmpdkdmffnleaddmd
URL Officiel https://chromewebstore.google.com/detail/reddit-under-100/gockmhepknafokmfmpdkdmffnleaddmd
Description Highlights threads that contain under 100 comments. Toggle with ~ key.
Taille du Fichier 13.37 KB
Nombre d'Installations 14
Version Actuelle 2.0
Dernière Mise à Jour 2023-07-20
Date de Publication 2016-07-13
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://www.clayburngriffin.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.clayburngriffin.com/under100
Langues Prises en Charge 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
}