Distraction Free Reddit

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

Distraction Free Redditคืออะไร?

Distraction Free Reddit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dylanjmorrison30 และคุณลักษณะหลักของมันคือ "Remove the distracting parts of reddit and focus only on what really matters to you."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Distraction Free Reddit

ดาวน์โหลดไฟล์ส่วนขยาย Distraction Free Reddit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Distraction Free Reddit Distraction Free Reddit
ID dgllcfdfcgnocdmmglnpbpoalhpdfckg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/distraction-free-reddit/dgllcfdfcgnocdmmglnpbpoalhpdfckg
คำอธิบาย Remove the distracting parts of reddit and focus only on what really matters to you.
ขนาดไฟล์ 416 KB
จำนวนการติดตั้ง 263
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2023-06-28
วันที่เผยแพร่ 2022-09-01
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา dylanjmorrison30
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/djm30/Distraction-Free-Reddit
ภาษาที่รองรับ 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
    }
}