Consistency
Consistency helps you to build your habits by blocking websites you don't want to visit.
Consistency란 무엇입니까?
Consistency은(는) Patrik Gallik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Consistency helps you to build your habits by blocking websites you don't want to visit."입니다.
확장 프로그램 스크린샷
Consistency 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
We all have more productive and fulfilling stuff to do than visiting websites that steal our focus and time. Break those bad habits with Consistency. Inspired by James Clear's book Atomic Habits, words from the book appear when you get tempted to visit a page you've previously blocked. List of blocked websites is synced to your Google account (if available), so you can use Consistency in your mobile Chrome as well. Consistency does not track anything, you can check out the source code here: https://github.com/patresk/consistency Changelog: 0.3 - Added timer functionality
확장 프로그램 기본 정보
이름 | Consistency |
ID | lnlkeagaboibogkmlokbhmjhdglokgdn |
공식 URL | https://chromewebstore.google.com/detail/consistency/lnlkeagaboibogkmlokbhmjhdglokgdn |
설명 | Consistency helps you to build your habits by blocking websites you don't want to visit. |
파일 크기 | 61.57 KB |
설치 횟수 | 18 |
현재 버전 | 0.3 |
최근 업데이트 | 2020-09-02 |
출시 날짜 | 2020-04-11 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Patrik Gallik |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/patresk/consistency |
도움말 페이지 URL | https://github.com/patresk/consistency/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Consistency", "version": "0.3", "permissions": [ "storage" ], "description": "Consistency helps you to build your habits by blocking websites you don't want to visit.", "options_page": "options.html", "page_action": { "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ "nono.html", "nono.js", "images\/logo.png", "lib\/moment.min.js" ], "manifest_version": 2 } |