clearspace

Enhanced browsing: more focus, less distraction

什么是clearspace?

clearspace是由https://getclearspace.com开发的Chrome扩展程序,该扩展的主要功能是“Enhanced browsing: more focus, less distraction”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载clearspace扩展crx文件

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

扩展使用说明

                        Clearspace: Your Chrome Extension for Mindful Browsing

Navigating the digital world requires a balance between being connected and staying focused. With an abundance of distractions like social media and enticing websites, managing screen time effectively is crucial for mental well-being, productivity, and fostering healthy relationships. Clearspace for Chrome is designed to combat digital addiction and transform your browsing experience into one that's purposeful and less distracting.

Why Clearspace for Chrome?

Clearspace revolutionizes your browsing by eliminating distractions while keeping essential content accessible. Say goodbye to impulsive clicks and endless social media scrolling.


Key Features:

- Block and Limit Websites: Easily block websites that you find distracting and set limits on your browsing time.
- Social Media Doomscrolling Management: Implement session management to prevent excessive scrolling.
- Habit Change: Use the pause-before-opening feature to reduce the influence of dopamine, leading to more mindful online habits.
- Minimalist Design: Clearspace’s interface is straightforward, ensuring that your attention remains where it should.
- Social Feed Blocking: Automatically block distracting feeds on social media sites, removing the temptation to endlessly scroll.
- Reader Mode: Activate Reader Mode to strip away all distracting elements from a webpage, leaving only the text. This feature is perfect for those who want to concentrate on the content without the clutter of ads, pop-ups, or other distracting elements.
- Combat Digital Addiction: Notice a significant reduction in impulsive website visits and an enhanced ability to engage in deep work and flow state activities.


How It Works:

1. Choose a website you wish to use less.
2. When attempting to visit, make a mindful decision – proceed or opt out?
3. Gradually, take control over your browsing habits.


Digital Minimalism and Wellbeing:

Clearspace for Chrome advocates for digital minimalism, allowing users to align their online actions with their intentions. Mindfulness practices are integrated to promote a balanced internet usage.


Research-Backed Approach:

Research shows that consistent, small nudges can reshape habitual behavior. Clearspace provides these nudges, guiding users toward healthier digital habits.


Embrace Digital Freedom:

Controlling screen time is essential for digital wellbeing. Clearspace for Chrome offers website limits, browsing control, and distraction blockers to combat digital distractions. Its minimalist design and effective features help reshape browsing patterns, reducing the impact of dopamine-driven website cravings. Consider Clearspace your partner in achieving a balanced digital lifestyle. It serves as a dietary guide for your digital consumption, a reminder to pause before making decisions, a browser fasting tracker, and a digital detox supporter.                    

扩展基本信息

名称 clearspace clearspace
ID geebjpiagpchjgjdanomkgjhcjnahjfe
官方URL https://chromewebstore.google.com/detail/clearspace/geebjpiagpchjgjdanomkgjhcjnahjfe
简介 Enhanced browsing: more focus, less distraction
文件大小 208 KB
安装次数 625
当前版本 0.4.2
更新时间 2024-03-01
上架时间 2022-08-01
评分 4.75/5 共63次评分
开发者 https://getclearspace.com
电子邮箱 [email protected]
付费类型 in_app
扩展官网 https://getclearspace.com
帮助页面URL https://docs.google.com/forms/d/e/1FAIpQLScxPf5YF47vHn-djsQuauMEMR1zalKYIR4Rp0SbmSNh0GLxJA/viewform
隐私政策页面URL https://www.notion.so/Privacy-Policy-05fb16506a294132acee914a8f6e5331
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "description": "Enhanced browsing: more focus, less distraction",
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icons\/icon32.png"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "feedblocking-styles.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation",
        "scripting",
        "alarms"
    ],
    "host_permissions": [
        ""
    ],
    "version": "0.4.2",
    "name": "clearspace",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*",
                "https:\/\/linkedin.com\/*"
            ],
            "js": [
                "src\/feedblocking\/blocker.js",
                "src\/feedblocking\/linkedin.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/facebook.com\/*"
            ],
            "js": [
                "src\/feedblocking\/blocker.js",
                "src\/feedblocking\/facebook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.instagram.com\/*",
                "https:\/\/instagram.com\/*"
            ],
            "js": [
                "src\/feedblocking\/blocker.js",
                "src\/feedblocking\/instagram.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "src\/feedblocking\/blocker.js",
                "src\/feedblocking\/twitter.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ],
            "js": [
                "src\/feedblocking\/blocker.js",
                "src\/feedblocking\/youtube.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "src\/feedblocking\/blocker.js",
                "src\/feedblocking\/reddit.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/feedblocking\/reader-mode.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/app.getclearspace.com\/*"
            ],
            "js": [
                "src\/onboarding.js"
            ],
            "run_at": "document_start"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.getclearspace.com\/*"
        ]
    }
}