Todoist Mod
A Plugin to add some functionality to todoist.com web application
Cos'è Todoist Mod?
Todoist Mod è un'estensione di Chrome sviluppata da http://b2hq.com, e la sua funzione principale è "A Plugin to add some functionality to todoist.com web application".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Todoist Mod
Scarica i file di estensione Todoist Mod 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
Todoist Mod is an *UNOFFICIAL* extension which should add some functionality to todoist.com site, some stuff I personally miss ... for now it adds the ability to define a default priority for tasks and some css tweaks. I plan to add more options as I stumble upon missing features ... Informazioni di Base sull'Estensione
| Nome | |
| ID | angcidioihngmbmhjnijbeghgnkagomd |
| URL Ufficiale | https://chrome.google.com/webstore/detail/todoist-mod/angcidioihngmbmhjnijbeghgnkagomd |
| Descrizione | A Plugin to add some functionality to todoist.com web application |
| Dimensione del File | 63.07 KB |
| Conteggio Installazioni | 174 |
| Versione Corrente | 0.1.1 |
| Ultimo Aggiornamento | 2014-10-20 |
| Data di Pubblicazione | 2014-10-20 |
| Valutazione | 3.50/5 Totale 2 Valutazioni |
| Sviluppatore | http://b2hq.com |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://b2hq.com/ |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Todoist Mod",
"description": "A Plugin to add some functionality to todoist.com web application",
"version": "0.1.1",
"permissions": [
"https:\/\/todoist.com\/",
"http:\/\/todoist.com\/"
],
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*:\/\/todoist.com\/*"
],
"js": [
"jquery-2.1.1.min.js",
"main.js"
],
"css": [
"main.css"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |