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文件

下载Otli - Distraction Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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