Tint Timer

Tint Timer is a tint-based, fully immersive time management tool.

Tint Timer란 무엇입니까?

Tint Timer은(는) Tint Timer Devteam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tint Timer is a tint-based, fully immersive time management tool."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tint Timer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ~*~{ TINT TIMER}~*~

Tint Timer is a completely new way of time management, based in color psychology and a philosophy of non-intrusiveness.
(suggestions? bugs? email us at [email protected])
_____________________
COMING SOON:
-set custom opacity 
-color picker UI
-reusable sessions
_____________________

The initial inspiration for our extension came from the Pomodoro Study Method, which breaks study sessions into 25 minute intervals with 5 minute breaks in between.Our extension takes the Pomodoro method to a new level, providing unprecedented flexibility and unobtrusiveness through our innovative color tint.

This allows you to plan out your day without having to check a task list or timer constantly.The color tint on the screen serves as an active reminder to focus on the current task, but also psychologically influences the user to focus.
 
*Writing a long argumentative essay? Choose a deep red shade to help you get in the zone.
*Trying to get creative? It might be cliche, but studies have shown that shades of blue can help inspire you.

   HOW TO USE:
	1. Enter Session Name
	2. Enter Session Time
	3. Choose Session Color
	4. Add Session to Session List
	5. Repeat Steps 1-4 as many times as you want
	6. Hit Start Button :-)

Use CTRL+SPACE to bring up an overlay of the current task

tint.timer@gmail // github.com/nwapw-tint/Timing-Extension                    

확장 프로그램 기본 정보

이름 Tint Timer Tint Timer
ID klchmgiefihgcmobhlpapaalhmbkgdnc
공식 URL https://chromewebstore.google.com/detail/tint-timer/klchmgiefihgcmobhlpapaalhmbkgdnc
설명 Tint Timer is a tint-based, fully immersive time management tool.
파일 크기 295 KB
설치 횟수 47
현재 버전 1.0.3
최근 업데이트 2020-09-02
출시 날짜 2019-09-05
평점 4.63/5 총 8 개의 평점
개발자 Tint Timer Devteam
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tint Timer",
    "description": "Tint Timer is a tint-based, fully immersive time management tool.",
    "version": "1.0.3",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/common_functions.js",
                "scripts\/content\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "scripts\/common_functions.js",
            "scripts\/background\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "scripts\/popup\/popup.html",
        "default_title": "Edit the sessions and settings here!"
    },
    "permissions": [
        "tabs",
        "",
        "storage",
        "alarms"
    ],
    "omnibox": {
        "keyword": "tint"
    }
}