Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Wat is Reddit Column View?
Reddit Column View is een Chrome-extensie ontwikkeld door omniZero, en de belangrijkste functie is "Splits posts into columns. Compatible with old and new Reddit layouts.".
Extensie Screenshots
Download het CRX-bestand van de extensie Reddit Column View
Download Reddit Column View-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Reddit Column View |
ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
Officiële URL | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
Beschrijving | Splits posts into columns. Compatible with old and new Reddit layouts. |
Bestandsgrootte | 97.43 KB |
Aantal Installaties | 157 |
Huidige Versie | 1.0.7 |
Laatst Bijgewerkt | 2021-02-15 |
Publicatiedatum | 2021-01-14 |
Beoordeling | 4.60/5 Totaal 5 Beoordelingen |
Ontwikkelaar | omniZero |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |