Reddit Column View

Splits posts into columns. Compatible with old and new Reddit layouts.

Reddit Column View란 무엇입니까?

Reddit Column View은(는) omniZero에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Splits posts into columns. Compatible with old and new Reddit layouts."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Reddit Column View 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
}