TodoistChute: Finish Time for Todoist

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

Co to jest TodoistChute: Finish Time for Todoist?

TodoistChute: Finish Time for Todoist to rozszerzenie Chrome opracowane przez https://beyooon.jp, a jego główną funkcją jest „TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia TodoistChute: Finish Time for Todoist

Pobierz pliki rozszerzeń TodoistChute: Finish Time for Todoist w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa TodoistChute: Finish Time for Todoist TodoistChute: Finish Time for Todoist
ID ghllkaandaghmnhgldofdmollpjlefmj
Oficjalny URL https://chromewebstore.google.com/detail/todoistchute-finish-time/ghllkaandaghmnhgldofdmollpjlefmj
Opis TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time.
Rozmiar pliku 391 KB
Liczba instalacji 1,748
Aktualna Wersja 2.2.0
Ostatnia Aktualizacja 2023-05-04
Data Publikacji 2020-06-11
Ocena 4.95/5 Łącznie 22 Oceny
Deweloper https://beyooon.jp
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/hideyuk1-jp/todoistchute
Adres URL Strony Pomocy https://beyooon.jp/contact
Obsługiwane Języki 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"
    ]
}