Reddit-Sidebar-Hider

This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…

Reddit-Sidebar-Hider là gì?

Reddit-Sidebar-Hider là một tiện ích mở rộng Chrome được phát triển bởi Nick Chirico, và tính năng chính của nó là "This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…".

Ả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-Hider

Tải xuống các tệp mở rộng Reddit-Sidebar-Hider 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

                        This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click the icon in the chrome extension menu.

Preferences are stored, and used on each Reddit page load.

Source code can be found at https://github.com/kiddico/Reddit-Sidebar-Hider                    

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

Tên Reddit-Sidebar-Hider Reddit-Sidebar-Hider
ID aipfmjljjkiepeocilaillicdohnkehp
URL Chính Thức https://chromewebstore.google.com/detail/reddit-sidebar-hider/aipfmjljjkiepeocilaillicdohnkehp
Mô tả This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…
Kích Thước Tệp 18.06 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2017-01-07
Ngày Phát Hành 2017-01-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Nick Chirico
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kiddico/Reddit-Sidebar-Hider
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit-Sidebar-Hider",
    "version": "1.4",
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/www.reddit.com\/*",
        "http:\/\/www.reddit.com\/*"
    ],
    "icons": {
        "16": "images\/16_icon.png",
        "32": "images\/32_icon.png",
        "64": "images\/64_icon.png",
        "128": "images\/128_icon.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.reddit.com\/*",
                "http:\/\/www.reddit.com\/*",
                "http:\/\/np.reddit.com\/*",
                "https:\/\/np.reddit.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "images\/128_icon.png",
        "default_title": "Toggle Reddit Sidebar"
    },
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "https:\/\/www.reddit.com\/*",
            "http:\/\/www.reddit.com\/*",
            "http:\/\/np.reddit.com\/*",
            "https:\/\/np.reddit.com\/*"
        ]
    },
    "web_accessible_resources": [
        "images\/*.png"
    ]
}