Old Reddit Redirect
Ensure Reddit always loads the old design
Old Reddit Redirect là gì?
Old Reddit Redirect là một tiện ích mở rộng Chrome được phát triển bởi tomjwatson, và tính năng chính của nó là "Ensure Reddit always loads the old design".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Old Reddit Redirect
Tải xuống các tệp mở rộng Old Reddit Redirect 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
Dislike Reddit's redesign? Old Reddit Redirect will ensure that you always load the old (old.reddit.com) design instead. Forces all reddit.com links to old.reddit.com, including navigating to the site, opening links or using old bookmarks. Unlike the account setting for turning off the design, this works regardless of whether you are logged in or not or in incognito mode. There are also a few minor quality of life improvements: - Remove the undismissable cookie banner - Prevent reddit from rendering raw image URLs as HTML - Rewrite links to galleries to the raw old reddit comments page Old Reddit Redirect is free and open source software. The code is available at https://github.com/tom-james-watson/old-reddit-redirect. Pull requests are more than welcome.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Old Reddit Redirect |
ID | dneaehbmnbhcippjikoajpoabadpodje |
URL Chính Thức | https://chromewebstore.google.com/detail/old-reddit-redirect/dneaehbmnbhcippjikoajpoabadpodje |
Mô tả | Ensure Reddit always loads the old design |
Kích Thước Tệp | 16.21 KB |
Số Lần Cài Đặt | 102,184 |
Phiên Bản Hiện Tại | 1.8.0 |
Cập Nhật Lần Cuối | 2023-10-17 |
Ngày Phát Hành | 2020-03-10 |
Đánh Giá | 4.76/5 Tổng số 276 Đánh Giá |
Nhà Phát Triển | tomjwatson |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tom-james-watson/old-reddit-redirect |
URL Trang Trợ Giúp | https://github.com/tom-james-watson/old-reddit-redirect/issues |
URL Trang Chính Sách Bảo Mật | https://github.com/tom-james-watson/privacy-policy/blob/main/README.md |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Old Reddit Redirect", "description": "Ensure Reddit always loads the old design", "version": "1.8.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/old.reddit.com\/*" ], "css": [ "styles.css" ], "run_at": "document_start" } ], "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/reddit.com\/*", "*:\/\/www.reddit.com\/*", "*:\/\/np.reddit.com\/*", "*:\/\/amp.reddit.com\/*", "*:\/\/i.reddit.com\/*", "*:\/\/i.redd.it\/*", "*:\/\/preview.redd.it\/*" ] } |