Stay on Task
An extension to increase your productivity!
Stay on Task란 무엇입니까?
Stay on Task은(는) Productivity Tools에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to increase your productivity!"입니다.
확장 프로그램 스크린샷
Stay on Task 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Stay on Task is an extension that greatly increases your productivity. It combines a site-blocker with a to-do list, two crucial components to keep you on task. If you try and access a site on your block-list, you are instead redirected to your to-do list. The design is efficient and simple, and so are the buttons, which are all located in the upper right hand corner. The one furthest to the right switches between your to-do list and site-blocker. The one in the middle determines how your task list will be organized. (Up arrow means most recent task goes on top, down arrow means it goes on the bottom, alphabetical means it is organized alphabetically). The one on the left clears your task list. This was coded by a high school student over a few days, so it might have a few bugs! I did my best to check it, but if there are any problems let me know in a review! This extension really helped me stay on task as a student, and I hope it will do the same for you! If you like it feel free to leave a nice rating :)
확장 프로그램 기본 정보
이름 | Stay on Task |
ID | lamjjbgpfmngkknajabeoncednnlgiao |
공식 URL | https://chromewebstore.google.com/detail/stay-on-task/lamjjbgpfmngkknajabeoncednnlgiao |
설명 | An extension to increase your productivity! |
파일 크기 | 511 KB |
설치 횟수 | 428 |
현재 버전 | 3.7 |
최근 업데이트 | 2020-10-20 |
출시 날짜 | 2020-08-05 |
평점 | 4.92/5 총 13 개의 평점 |
개발자 | Productivity Tools |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stay on Task", "description": "An extension to increase your productivity!", "version": "3.7", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "icons": { "16": "extension_images\/simpleclock.png", "48": "extension_images\/simpleclock.png", "128": "extension_images\/simpleclock.png" }, "browser_action": { "default_icon": "extension_images\/simpleclock.png", "default_popup": "popup.html" }, "permissions": [ "tabs" ] } |