Reddit Next

read reddit post and comments side by side with next button. hide visited posts.

Reddit Next là gì?

Reddit Next là một tiện ích mở rộng Chrome được phát triển bởi https://unterberger.media, và tính năng chính của nó là "read reddit post and comments side by side with next button. hide visited posts.".

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

screenshot

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

Tải xuống các tệp mở rộng Reddit Next 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

                        A new way to read reddit news. 

Clicking the toolbar button will open 2 windows. The big one on the left contains the current post, and the small one on the right contains the comments to this post. The mobile layout is used to fit nicely into the sidebar. If it asks which mobile layout to use, click on "old one is just fine". If you click on the toolbar button again it will load the next post in the list. 

Go to options to set your subreddit. default is "r/all". you can also exclude subreddits which you don't like using the "exclude current .." button in the options page. it will add the last visited/current subreddit to your excludes list. 

To finish reading simply close both windows. The windows are reused, so you only have 2 open windows. by default they are about 2/3 for post and 1/3 for comments, but you can simply resize as you like as the windows stay in place and just replace content. 

Due to changes in the chrome toolbar, you have to go into extensions and pin the reddit-next icon to the toolbar. as it will be the button to forward to the next post. the icon sometimes changes and indicates loading new posts via rss from reddit website. 

v3.03: bugfixes, changed comments to old.reddit.com as i.reddit.com is gone
v3.02: bugfixes, more stable skip of viewed posts
v3.01: bugfixes, options, more stable code 
v2.13: bugfix v.redd.it
v2.11: bugfix i.reddituploads.com
v2.0: option to turn off mobile version of comments if using with "Shine for Reddit" which works better with normal links, preload now off by default. 
v1.9: bugfixes, try.compact cookie bug, now works
v1.8: bugfixes and prefetch is in options customizable
v1.6: bugfix, exclude subreddit pos
v1.5: bugfix
v1.4: preloading next page and fast switch

P.S. this plugin works great in combination with my "columns" chrome extension which will beautify wikipedia pages and long article texts in general and make it more easy to read.                    

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

Tên Reddit Next Reddit Next
ID opmjnkhofmafoobpoljhdghkfpcgebmn
URL Chính Thức https://chromewebstore.google.com/detail/reddit-next/opmjnkhofmafoobpoljhdghkfpcgebmn
Mô tả read reddit post and comments side by side with next button. hide visited posts.
Kích Thước Tệp 60.46 KB
Số Lần Cài Đặt 51
Phiên Bản Hiện Tại 3.03
Cập Nhật Lần Cuối 2023-05-10
Ngày Phát Hành 2018-09-21
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://unterberger.media
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://unterberger.media
URL Trang Trợ Giúp https://unterberger.media/contact
URL Trang Chính Sách Bảo Mật https://unterberger.media/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Next",
    "short_name": "reddit-next",
    "description": "read reddit post and comments side by side with next button. hide visited posts. ",
    "version": "3.03",
    "manifest_version": 3,
    "action": {
        "name": "click to load next post"
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "reddit-old.css"
            ],
            "matches": [
                "https:\/\/old.reddit.com\/*"
            ]
        }
    ],
    "icons": {
        "128": "reddit-128x128.png",
        "16": "reddit-next.png",
        "48": "reddit-128x128.png"
    }
}