Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Co to jest Reddit Column View?
Reddit Column View to rozszerzenie Chrome opracowane przez omniZero, a jego główną funkcją jest „Splits posts into columns. Compatible with old and new Reddit layouts.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Reddit Column View
Pobierz pliki rozszerzeń Reddit Column View w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Reddit Column View |
ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
Oficjalny URL | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
Opis | Splits posts into columns. Compatible with old and new Reddit layouts. |
Rozmiar pliku | 97.43 KB |
Liczba instalacji | 157 |
Aktualna Wersja | 1.0.7 |
Ostatnia Aktualizacja | 2021-02-15 |
Data Publikacji | 2021-01-14 |
Ocena | 4.60/5 Łącznie 5 Oceny |
Deweloper | omniZero |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |