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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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
}