Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Was ist Reddit Column View?
Reddit Column View ist eine Chrome-Erweiterung, die von omniZero entwickelt wurde, und ihr Hauptmerkmal ist "Splits posts into columns. Compatible with old and new Reddit layouts.".
Erweiterungsscreenshots
Reddit Column View-Erweiterungs-CRX-Datei herunterladen
Laden Sie Reddit Column View-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
| Offizielle URL | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
| Beschreibung | Splits posts into columns. Compatible with old and new Reddit layouts. |
| Dateigröße | 97.43 KB |
| Installationsanzahl | 157 |
| Aktuelle Version | 1.0.7 |
| Letztes Update | 2021-02-15 |
| Veröffentlichungsdatum | 2021-01-14 |
| Bewertung | 4.60/5 Insgesamt 5 Bewertungen |
| Entwickler | omniZero |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
} | |