Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Vad är Reddit Column View?
Reddit Column View är en Chrome-tillägg utvecklad av omniZero, och dess huvudfunktion är "Splits posts into columns. Compatible with old and new Reddit layouts.".
Tilläggsskärmbilder
Ladda ner Reddit Column View-förlängningens CRX-fil
Ladda ner Reddit Column View-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Reddit Column View |
ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
Officiell webbadress | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
Beskrivning | Splits posts into columns. Compatible with old and new Reddit layouts. |
Filstorlek | 97.43 KB |
Antal Installationer | 157 |
Aktuell Version | 1.0.7 |
Senast Uppdaterad | 2021-02-15 |
Publiceringsdatum | 2021-01-14 |
Betyg | 4.60/5 Totalt 5 Betyg |
Utvecklare | omniZero |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } |