Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
What is Reddit Column View?
Reddit Column View is a Chrome extension developed by omniZero, and its main feature is "Splits posts into columns. Compatible with old and new Reddit layouts.".
Extension Screenshots
Download Reddit Column View Extension CRX File
Download Reddit Column View extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Reddit Column View |
ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
Official URL | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
Description | Splits posts into columns. Compatible with old and new Reddit layouts. |
File Size | 97.43 KB |
Installation Count | 157 |
Current Version | 1.0.7 |
Last Updated | 2021-02-15 |
Publish Date | 2021-01-14 |
Rating | 4.60/5 Total 5 Ratings |
Developer | omniZero |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |