Distraction Free Reddit

Remove the distracting parts of reddit and focus only on what really matters to you.

Distraction Free Reddit là gì?

Distraction Free Reddit là một tiện ích mở rộng Chrome được phát triển bởi dylanjmorrison30, và tính năng chính của nó là "Remove the distracting parts of reddit and focus only on what really matters to you.".

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

screenshot
screenshot
screenshot

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

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

                        Distraction Free Reddit is an extension that helps you use Reddit more intentionally. You can block off parts of Reddit to cut out mindless scrolling and increase productivity. The extension includes features like hiding the main feed, hiding r/all and popular, hiding user profiles, hiding full page search, hiding the sidebar, hiding comments, and more. You can also use whitelist or blacklist mode to customise your Reddit experience further.                    

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

Tên Distraction Free Reddit Distraction Free Reddit
ID dgllcfdfcgnocdmmglnpbpoalhpdfckg
URL Chính Thức https://chromewebstore.google.com/detail/distraction-free-reddit/dgllcfdfcgnocdmmglnpbpoalhpdfckg
Mô tả Remove the distracting parts of reddit and focus only on what really matters to you.
Kích Thước Tệp 416 KB
Số Lần Cài Đặt 263
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2023-06-28
Ngày Phát Hành 2022-09-01
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển dylanjmorrison30
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/djm30/Distraction-Free-Reddit
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Distraction Free Reddit",
    "version": "1.0.5",
    "description": "Remove the distracting parts of reddit and focus only on what really matters to you.",
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                ".\/static\/js\/content.js"
            ],
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "192": "logo192.png"
    },
    "action": {
        "default_icon": {
            "192": "logo192.png"
        },
        "default_title": "Popup",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}