Distraction Free Reddit

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

什麼是Distraction Free Reddit?

Distraction Free Reddit是由dylanjmorrison30開發的Chrome擴展程式,該擴展的主要功能是“Remove the distracting parts of reddit and focus only on what really matters to you.”。

擴展截圖

screenshot
screenshot
screenshot

下載Distraction Free Reddit擴展crx文件

下載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
官方網址 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
    }
}