Reddit Scroller

Automatically scroll to the next Reddit post after however many seconds the user wants.

Reddit Scroller là gì?

Reddit Scroller là một tiện ích mở rộng Chrome được phát triển bởi penwapps, và tính năng chính của nó là "Automatically scroll to the next Reddit post after however many seconds the user wants.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reddit Scroller

Tải xuống các tệp mở rộng Reddit Scroller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reddit Scroller Reddit Scroller
ID obbeaiiaplojgmllajpdcgbblmgdmjnf
URL Chính Thức https://chromewebstore.google.com/detail/reddit-scroller/obbeaiiaplojgmllajpdcgbblmgdmjnf
Mô tả Automatically scroll to the next Reddit post after however many seconds the user wants.
Kích Thước Tệp 22.33 KB
Số Lần Cài Đặt 431
Phiên Bản Hiện Tại 0.6.0
Cập Nhật Lần Cuối 2021-02-05
Ngày Phát Hành 2020-04-04
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển penwapps
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}