Reddit Top-Level Comment Scroller
Helps you scroll between top level comments on Reddit
什麼是Reddit Top-Level Comment Scroller?
Reddit Top-Level Comment Scroller是由Eddy開發的Chrome擴展程式,該擴展的主要功能是“Helps you scroll between top level comments on Reddit”。
擴展截圖
下載Reddit Top-Level Comment Scroller擴展crx文件
下載Reddit Top-Level Comment Scroller擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Keyboard and mouse wheel navigation for comments. Useful for reading large discussions.
Use Shift+Up or Shift+Down to jump between top-level comments.
Or, place your mouse over the box placed in the bottom-right corner and scroll between top-level comments using your mouse wheel. (The box can be disabled in the options.)
Note: all code is released under the WTFPL
Contributers:
Matt Livezey (sitetable fix) 擴展基本資訊
| 名稱 | |
| ID | eijkojfjamombpgmepnneefgcakogimc |
| 官方網址 | https://chromewebstore.google.com/detail/reddit-top-level-comment/eijkojfjamombpgmepnneefgcakogimc |
| 簡介 | Helps you scroll between top level comments on Reddit |
| 檔案大小 | 77.54 KB |
| 安裝次數 | 177 |
| 目前版本 | 1.9 |
| 更新時間 | 2016-06-11 |
| 上架時間 | 2016-06-11 |
| 評分 | 4.57/5 共 28 次評分 |
| 開發者 | Eddy |
| 付費類型 | free |
| 擴展官網 | https://github.com/ghedsouza/reddit-top-level-comment-scroller |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reddit Top-Level Comment Scroller",
"version": "1.9",
"manifest_version": 2,
"description": "Helps you scroll between top level comments on Reddit",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"lib\/prototype.js",
"lib\/scriptaculous.js",
"lib\/builder.js",
"lib\/effects.js",
"lib\/dragdrop.js",
"lib\/slider.js",
"lib\/controls.js",
"scroll.js"
],
"matches": [
"https:\/\/www.reddit.com\/*\/comments\/*"
],
"run_at": "document_end"
}
],
"options_page": "options.html"
} | |