Fold Socks
A minimalist distraction blocker to keep you on task.
Fold Socks란 무엇입니까?
Fold Socks은(는) https://foldsocks.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A minimalist distraction blocker to keep you on task."입니다.
확장 프로그램 스크린샷
Fold Socks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you ever sit down to complete something only to be distracted by the internet? STAY IN THE FLOW Alternate between blocks of concentration and short breaks to supercharge your productivity. GUARD YOUR FOCUS When your focus slips, we'll block distracting websites and nudge you towards your current task. SMALL TASKS LEAD TO LARGE GOALS Accomplish your goals daily by breaking them into small tasks and focusing on one thing at a time.
확장 프로그램 기본 정보
이름 | Fold Socks |
ID | jgoglnfeholbpehohjbelilljdphphli |
공식 URL | https://chromewebstore.google.com/detail/fold-socks/jgoglnfeholbpehohjbelilljdphphli |
설명 | A minimalist distraction blocker to keep you on task. |
파일 크기 | 764 KB |
설치 횟수 | 87 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2021-09-03 |
출시 날짜 | 2021-02-14 |
평점 | 4.80/5 총 15 개의 평점 |
개발자 | https://foldsocks.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://foldsocks.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fold Socks", "version": "1.0.3", "description": "A minimalist distraction blocker to keep you on task.", "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "chrome_url_overrides": { "newtab": "pages\/newtab.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/blockCheck.js" ], "run_at": "document_start" } ], "icons": { "16": "fold_icon_white_16.png", "32": "fold_icon_white_32.png", "64": "fold_icon_white_64.png" }, "browser_action": { "default_icon": { "16": "fold_icon_white_16.png", "32": "fold_icon_white_32.png", "64": "fold_icon_white_64.png" }, "default_title": "Fold Socks" }, "manifest_version": 2 } |