reflect. - a mindful website blocker

a website blocker that asks users to reflect on their usage.

reflect. - a mindful website blocker란 무엇입니까?

reflect. - a mindful website blocker은(는) https://getreflect.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "a website blocker that asks users to reflect on their usage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

reflect. - a mindful website blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        reflect is a digitally mindful chrome extension that encourages users to reflect on their relationship with technology rather than block users outright.

When you attempt to visit distracting websites, reflect will ask you what your intention in doing so is. If you have a valid reason, you are given a set amount of time to get your work done on the website. If not, you are encouraged to be more specific in your answer or to reflect further.

For example, if you're trying to access YouTube to watch an educational video, you can enter the website; however, if you just want to watch cat videos, reflect will prevent you from doing so. You can customize the list of blocked websites and the duration that the websites will be blocked. 

We don't show ads or collect/store data. 

We're also an open-source project! You can find our source code here: https://github.com/getreflect/reflect-chrome.                    

확장 프로그램 기본 정보

이름 reflect. - a mindful website blocker reflect. - a mindful website blocker
ID bicebchdpeichdlmoaflplakefkjkade
공식 URL https://chromewebstore.google.com/detail/reflect-a-mindful-website/bicebchdpeichdlmoaflplakefkjkade
설명 a website blocker that asks users to reflect on their usage.
파일 크기 1.69 MB
설치 횟수 951
현재 버전 1.4.1
최근 업데이트 2022-03-14
출시 날짜 2020-05-13
평점 4.79/5 총 29 개의 평점
개발자 https://getreflect.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://getreflect.app/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "reflect. - a mindful website blocker",
    "description": "a website blocker that asks users to reflect on their usage.",
    "version": "1.4.1",
    "options_page": "res\/pages\/options.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "res\/icon.png",
        "48": "res\/icon.png",
        "128": "res\/icon.png"
    },
    "browser_action": {
        "default_icon": "res\/icon.png",
        "default_popup": "res\/pages\/popup.html",
        "default_title": "open reflect. options"
    },
    "permissions": [
        "storage",
        "",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "jquery-ui.min.js",
                "src\/content.js"
            ],
            "css": [
                "res\/fonts.css",
                "res\/main.css"
            ],
            "run_at": "document_start"
        }
    ],
    "commands": {
        "toggle-blocker": {
            "suggested_key": "Ctrl+Shift+O",
            "description": "Toggle reflect on\/off"
        }
    },
    "web_accessible_resources": [
        "res\/*"
    ]
}