TodoistChute: Finish Time for Todoist

TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time.

TodoistChute: Finish Time for Todoist란 무엇입니까?

TodoistChute: Finish Time for Todoist은(는) https://beyooon.jp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

TodoistChute: Finish Time for Todoist 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time.
Enter the time in minutes as "//60" in label or text of task.

More information.
https://github.com/hideyuk1-jp/todoistchute/blob/master/README.md                    

확장 프로그램 기본 정보

이름 TodoistChute: Finish Time for Todoist TodoistChute: Finish Time for Todoist
ID ghllkaandaghmnhgldofdmollpjlefmj
공식 URL https://chromewebstore.google.com/detail/todoistchute-finish-time/ghllkaandaghmnhgldofdmollpjlefmj
설명 TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time.
파일 크기 391 KB
설치 횟수 1,748
현재 버전 2.2.0
최근 업데이트 2023-05-04
출시 날짜 2020-06-11
평점 4.95/5 총 22 개의 평점
개발자 https://beyooon.jp
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hideyuk1-jp/todoistchute
도움말 페이지 URL https://beyooon.jp/contact
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "2.2.0",
    "default_locale": "en",
    "browser_action": {
        "default_icon": "img\/icon.png"
    },
    "icons": {
        "128": "img\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.todoist.com\/*"
            ],
            "js": [
                "js\/lib\/jquery-3.6.4.min.js",
                "js\/tc.js",
                "js\/tc_calender.js"
            ],
            "css": [
                "css\/tc.css"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}