Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Apa itu Reddit Column View?
Reddit Column View adalah ekstensi Chrome yang dikembangkan oleh omniZero, dan fitur utamanya adalah "Splits posts into columns. Compatible with old and new Reddit layouts.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Reddit Column View
Unduh file ekstensi Reddit Column View dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Reddit Column View |
ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
URL Resmi | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
Deskripsi | Splits posts into columns. Compatible with old and new Reddit layouts. |
Ukuran File | 97.43 KB |
Jumlah Instalasi | 157 |
Versi Saat Ini | 1.0.7 |
Terakhir Diperbarui | 2021-02-15 |
Tanggal Publikasi | 2021-01-14 |
Penilaian | 4.60/5 Total 5 Penilaian |
Pengembang | omniZero |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |