Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Что такое Reddit Column View?
Reddit Column View - это расширение Chrome, разработанное omniZero, и его основная функция - "Splits posts into columns. Compatible with old and new Reddit layouts.".
Снимки экрана расширения
Скачать файл CRX расширения Reddit Column View
Скачайте файлы расширений Reddit Column View в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Reddit Column View |
ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
Официальный URL | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
Описание | Splits posts into columns. Compatible with old and new Reddit layouts. |
Размер файла | 97.43 KB |
Количество установок | 157 |
Текущая Версия | 1.0.7 |
Последнее Обновление | 2021-02-15 |
Дата публикации | 2021-01-14 |
Рейтинг | 4.60/5 Всего 5 оценок |
Разработчик | omniZero |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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 } |