clearspace

Enhanced browsing: more focus, less distraction

Что такое clearspace?

clearspace - это расширение Chrome, разработанное https://getclearspace.com, и его основная функция - "Enhanced browsing: more focus, less distraction".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения clearspace

Скачайте файлы расширений 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\/*"
        ]
    }
}