Reddit Scroller
Automatically scroll to the next Reddit post after however many seconds the user wants.
Reddit Scrollerคืออะไร?
Reddit Scroller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย penwapps และคุณลักษณะหลักของมันคือ "Automatically scroll to the next Reddit post after however many seconds the user wants."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Scroller
ดาวน์โหลดไฟล์ส่วนขยาย Reddit Scroller ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a small Chrome Extension which you can use to scroll down to the next Reddit post automatically. You set the time you want to see each post, click the button, and off you go! Although I made it work for old.reddit.com as well, you will get the best experience on the new version. This is the first Chrome Extension I've ever made, so expect to see bugs :) I'll try my best to keep it updated and (in case this is ever used by someone who's not a friend of mine), listen to feedback and fix bugs. You can find the source code on: https://github.com/PenWallet/Reddit_Scroller Thanks to two friends of mine for helping me with HTML&CSS and the app icons, respectively.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Reddit Scroller |
ID | obbeaiiaplojgmllajpdcgbblmgdmjnf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/reddit-scroller/obbeaiiaplojgmllajpdcgbblmgdmjnf |
คำอธิบาย | Automatically scroll to the next Reddit post after however many seconds the user wants. |
ขนาดไฟล์ | 22.33 KB |
จำนวนการติดตั้ง | 431 |
เวอร์ชันปัจจุบัน | 0.6.0 |
อัปเดตครั้งล่าสุด | 2021-02-05 |
วันที่เผยแพร่ | 2020-04-04 |
คะแนน | 3.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | penwapps |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.6.0", "description": "__MSG_appDesc__", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/www.reddit.com\/*" ], "js": [ "scroller.js" ] }, { "matches": [ "https:\/\/old.reddit.com\/*" ], "js": [ "scrollerOld.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_title": "__MSG_appName__" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "storage" ], "icons": { "128": "icons\/128.png", "48": "icons\/48.png", "32": "icons\/32.png", "16": "icons\/16.png" }, "default_locale": "en" } |