Cleaner Reddit

This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.

Cleaner Reddit là gì?

Cleaner Reddit là một tiện ích mở rộng Chrome được phát triển bởi Chema Leon, và tính năng chính của nó là "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        Update Version 1.2 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's post flairs.

Update Version 1.1 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's recommended links.

Cleaner Reddit allows users to toggle the visibility of Reddit's sidebar, their thumbnails or their voting arrows for a cleaner interface while visiting reddit.com.                    

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

Tên Cleaner Reddit Cleaner Reddit
ID fbmjfgjjjpjkkmiclfbhgaemglcjpjlh
URL Chính Thức https://chromewebstore.google.com/detail/cleaner-reddit/fbmjfgjjjpjkkmiclfbhgaemglcjpjlh
Mô tả This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.
Kích Thước Tệp 430 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2018-11-09
Ngày Phát Hành 2018-11-09
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Chema Leon
Email [email protected]
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": "Cleaner Reddit",
    "description": "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.",
    "version": "1.2",
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "Toggle Sidebar",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "background",
        "storage",
        "*:\/\/www.reddit.com\/*",
        "*:\/\/reddit.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "ThirdParty\/jquery-3.2.1.min.js",
                "popup.js"
            ],
            "matches": [
                "*:\/\/www.reddit.com\/*",
                "*:\/\/reddit.com\/*"
            ]
        }
    ]
}