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
Eメール [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
}