Reddit Sidebar Collapser

Hide the Reddit sidebar until you actually need it.

Reddit Sidebar Collapser là gì?

Reddit Sidebar Collapser là một tiện ích mở rộng Chrome được phát triển bởi awswrd, và tính năng chính của nó là "Hide the Reddit sidebar until you actually need it.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reddit Sidebar Collapser

Tải xuống các tệp mở rộng Reddit Sidebar Collapser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Posts with lots of text in reddit can become extremely crowded by the sidebar, especially if you frequently have two windows open side by side. This extension fixes that by adding a widget to the top of the sidebar to collapse and expand it as needed.

If you'd rather have the sidebar still there, but have the option to collapse it, you can change the default behavior in the options page.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reddit Sidebar Collapser Reddit Sidebar Collapser
ID kkbbjempbnpnfmeldlaghacohkcaiind
URL Chính Thức https://chromewebstore.google.com/detail/reddit-sidebar-collapser/kkbbjempbnpnfmeldlaghacohkcaiind
Mô tả Hide the Reddit sidebar until you actually need it.
Kích Thước Tệp 7.68 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2013-06-20
Ngày Phát Hành 2013-06-19
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển awswrd
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Sidebar Collapser",
    "description": "Hide the Reddit sidebar until you actually need it.",
    "version": "1.0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}