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.”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | gockmhepknafokmfmpdkdmffnleaddmd |
| 官方網址 | 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
} | |