Google Calendar Integration for Todoist
Adds a todoist bar to the Google Calendar page.
Co to jest Google Calendar Integration for Todoist?
Google Calendar Integration for Todoist to rozszerzenie Chrome opracowane przez Spencer Hachmeister, a jego główną funkcją jest „Adds a todoist bar to the Google Calendar page.”.
Pobierz plik CRX rozszerzenia Google Calendar Integration for Todoist
Pobierz pliki rozszerzeń Google Calendar Integration 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
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | bnbmmdelanagbipabefjmhgpjaindpbn |
Oficjalny URL | https://chrome.google.com/webstore/detail/google-calendar-integrati/bnbmmdelanagbipabefjmhgpjaindpbn |
Opis | Adds a todoist bar to the Google Calendar page. |
Rozmiar pliku | 200 KB |
Liczba instalacji | 188 |
Aktualna Wersja | 1.0.0.1 |
Ostatnia Aktualizacja | 2017-12-06 |
Data Publikacji | 2017-12-06 |
Ocena | 4.36/5 Łącznie 11 Oceny |
Deweloper | Spencer Hachmeister |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Calendar Integration for Todoist", "version": "1.0.0.1", "author": "Spencer Hachmeister", "description": "Adds a todoist bar to the Google Calendar page.", "options_page": "options.html", "web_accessible_resources": [ "jQuery\/*", "loader.js", "cssLoader.js", "main.css" ], "permissions": [ "https:\/\/calendar.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "run_at": "document_idle", "js": [ "jQuery\/jquery.js", "jQuery\/jquery-ui.js", "loader.js" ], "css": [ "jQuery\/jquery-ui.structure.css", "jQuery\/jquery-ui.theme.css" ] }, { "matches": [ "https:\/\/calendar.google.com\/*" ], "run_at": "document_start", "js": [ "cssLoader.js" ] } ], "background": { "scripts": [ "listener.js" ], "persistent": false } } |