Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Reddit Column Viewとは何ですか?
Reddit Column ViewはomniZeroによって開発されたChromeの拡張機能で、その主な機能は「Splits posts into columns. Compatible with old and new Reddit layouts.」です。
拡張機能のスクリーンショット
Reddit Column View拡張機能のCRXファイルをダウンロード
Reddit Column View拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Reddit Column View |
ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
公式URL | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
説明 | Splits posts into columns. Compatible with old and new Reddit layouts. |
ファイルサイズ | 97.43 KB |
インストール数 | 157 |
現在のバージョン | 1.0.7 |
最終更新日 | 2021-02-15 |
公開日 | 2021-01-14 |
評価 | 4.60/5 合計 5 レビュー |
開発者 | omniZero |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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 } |