Reddit Under 100

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

什么是Reddit Under 100?

Reddit Under 100是由https://www.clayburngriffin.com开发的Chrome扩展程序,该扩展的主要功能是“Highlights threads that contain under 100 comments. Toggle with ~ key.”。

扩展截图

screenshot

下载Reddit Under 100扩展crx文件

下载Reddit Under 100扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Reddit Under 100 Reddit Under 100
ID gockmhepknafokmfmpdkdmffnleaddmd
官方URL https://chromewebstore.google.com/detail/reddit-under-100/gockmhepknafokmfmpdkdmffnleaddmd
简介 Highlights threads that contain under 100 comments. Toggle with ~ key.
文件大小 13.37 KB
安装次数 14
当前版本 2.0
更新时间 2023-07-20
上架时间 2016-07-13
评分 5.00/5 共1次评分
开发者 https://www.clayburngriffin.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://www.clayburngriffin.com/under100
支持的语言 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
}