Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Reddit Column View là gì?
Reddit Column View là một tiện ích mở rộng Chrome được phát triển bởi omniZero, và tính năng chính của nó là "Splits posts into columns. Compatible with old and new Reddit layouts.".
Ả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 Reddit Column View
Tải xuống các tệp mở rộng Reddit Column View 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
Rearranges posts into columns! Works with old Reddit and with redesign (in Card layout; Classic and Compact aren't currently fully supported). Number of columns scales with screen resolution and can be forced via extension's settings.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reddit Column View |
ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
URL Chính Thức | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
Mô tả | Splits posts into columns. Compatible with old and new Reddit layouts. |
Kích Thước Tệp | 97.43 KB |
Số Lần Cài Đặt | 157 |
Phiên Bản Hiện Tại | 1.0.7 |
Cập Nhật Lần Cuối | 2021-02-15 |
Ngày Phát Hành | 2021-01-14 |
Đánh Giá | 4.60/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | omniZero |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Column View", "version": "1.0.7", "description": "Splits posts into columns. Compatible with old and new Reddit layouts.", "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.reddit.com\/*", "https:\/\/old.reddit.com\/*" ], "js": [ "main.js" ] } ], "web_accessible_resources": [ "images\/*.png", "images\/*.ico" ], "manifest_version": 2 } |