Google Calendar Integration for Todoist
Adds a todoist bar to the Google Calendar page.
Cos'è Google Calendar Integration for Todoist?
Google Calendar Integration for Todoist è un'estensione di Chrome sviluppata da Spencer Hachmeister, e la sua funzione principale è "Adds a todoist bar to the Google Calendar page.".
Scarica il file CRX dell'estensione Google Calendar Integration for Todoist
Scarica i file di estensione Google Calendar Integration for Todoist in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
| Nome | |
| ID | bnbmmdelanagbipabefjmhgpjaindpbn |
| URL Ufficiale | https://chrome.google.com/webstore/detail/google-calendar-integrati/bnbmmdelanagbipabefjmhgpjaindpbn |
| Descrizione | Adds a todoist bar to the Google Calendar page. |
| Dimensione del File | 200 KB |
| Conteggio Installazioni | 188 |
| Versione Corrente | 1.0.0.1 |
| Ultimo Aggiornamento | 2017-12-06 |
| Data di Pubblicazione | 2017-12-06 |
| Valutazione | 4.36/5 Totale 11 Valutazioni |
| Sviluppatore | Spencer Hachmeister |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
}
} | |