Old Reddit For Chrome
For those who prefer the old reddit interface.
Old Reddit For Chrome là gì?
Old Reddit For Chrome là một tiện ích mở rộng Chrome được phát triển bởi Team Doko, và tính năng chính của nó là "For those who prefer the old reddit interface.".
Ả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 For Chrome
Tải xuống các tệp mở rộng Old Reddit For Chrome 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
If you're someone who likes the old reddit interface you'll love this extension. Welcome to Old Reddit For Chrome! - Switch to the old reddit interface. - Disable custom subreddit styles. (Use default styles.) - Browse without logging in. - No more annoying popups. - You can set the extension to work only in incognito mode. Note: To use this extension in incognito mode, you need to enable it in incognito mode: - Click the extension icon in the address bar. - Click manage extensions. - Click the Details button in the extension. - Toggle "Allow in incognito mode". To configure this extension: - Click the extension icon in the address bar. - Click the menu button (three dots) next to the extension name. - Click Options. - Select your preferences.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Old Reddit For Chrome |
ID | hkcalkecmjhbkgkkfdblgdikfgoglmlc |
URL Chính Thức | https://chromewebstore.google.com/detail/old-reddit-for-chrome/hkcalkecmjhbkgkkfdblgdikfgoglmlc |
Mô tả | For those who prefer the old reddit interface. |
Kích Thước Tệp | 233 KB |
Số Lần Cài Đặt | 102 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2022-08-12 |
Ngày Phát Hành | 2021-12-28 |
Nhà Phát Triển | Team Doko |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://teamdoko.com/products/old-reddit-for-safari/ |
URL Trang Trợ Giúp | https://teamdoko.com/support/ |
URL Trang Chính Sách Bảo Mật | https://teamdoko.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Old Reddit For Chrome", "description": "For those who prefer the old reddit interface.", "version": "1.3.1", "manifest_version": 2, "permissions": [ "storage", "*:\/\/*.reddit.com\/*" ], "icons": { "16": "\/images\/old_reddit_16.png", "32": "\/images\/old_reddit_32.png", "48": "\/images\/old_reddit_48.png", "128": "\/images\/old_reddit_128.png" }, "options_ui": { "page": "\/options\/index.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "*:\/\/reddit.com\/*", "*:\/\/www.reddit.com\/*" ], "run_at": "document_start", "js": [ "\/content.js" ] }, { "matches": [ "*:\/\/old.reddit.com\/*" ], "run_at": "document_end", "js": [ "\/content_old_reddit.js" ] } ] } |