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
公式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
Eメール [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
    }
}