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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}