Otli - Distraction Blocker

Hide distracting content while using powerful platforms

Otli - Distraction Blocker란 무엇입니까?

Otli - Distraction Blocker은(는) https://otli.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide distracting content while using powerful platforms"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Otli - Distraction Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        --- Description --- 

Internet platforms empower users. By design, you stay longer on these platforms then you anticipated. Otli hides distracting features from these platforms to let you focus on what you intended to do. 

Use Otli to focus on what you intended to do during study, work or leisure time 

--- Features --- 

- Hide distracting elements from websites  
- Quickly disable the distraction blocker to reach the content you need. 
- Dark Mode compatible 
- Display custom message on all overlays

--- Supported Platforms --- 

- YouTube: Hide suggested videos and related videos 
- Facebook: Hide Facebook feed and Stories                    

확장 프로그램 기본 정보

이름 Otli - Distraction Blocker Otli - Distraction Blocker
ID meckchggenmdhalojdfhidehacdhbdmj
공식 URL https://chromewebstore.google.com/detail/otli-distraction-blocker/meckchggenmdhalojdfhidehacdhbdmj
설명 Hide distracting content while using powerful platforms
파일 크기 1.18 MB
설치 횟수 87
현재 버전 1.9
최근 업데이트 2022-07-25
출시 날짜 2020-11-27
평점 5.00/5 총 5 개의 평점
개발자 https://otli.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.otli.io
도움말 페이지 URL https://www.otli.io
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Otli - Distraction Blocker",
    "short_name": "Otli",
    "version": "1.9.1",
    "version_name": "1.9",
    "description": "Hide distracting content while using powerful platforms",
    "author": "Vadim Gouskov",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.facebook.com\/*",
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Otli"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "content-style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.facebook.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content-style.css",
                "popup.css",
                "options.css"
            ],
            "matches": [
                "https:\/\/*.facebook.com\/*",
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "assets\/otli-logo-icon-16.png",
        "32": "assets\/otli-logo-icon-32.png",
        "48": "assets\/otli-logo-icon-48.png",
        "64": "assets\/otli-logo-icon-64.png",
        "128": "assets\/otli-logo-icon-128.png"
    }
}