Todoist Mod
A Plugin to add some functionality to todoist.com web application
Wat is Todoist Mod?
Todoist Mod is een Chrome-extensie ontwikkeld door http://b2hq.com, en de belangrijkste functie is "A Plugin to add some functionality to todoist.com web application".
Extensie Screenshots
Download het CRX-bestand van de extensie Todoist Mod
Download Todoist Mod-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 ... Basisinformatie over de Extensie
| Naam | |
| ID | angcidioihngmbmhjnijbeghgnkagomd |
| Officiële URL | https://chrome.google.com/webstore/detail/todoist-mod/angcidioihngmbmhjnijbeghgnkagomd |
| Beschrijving | A Plugin to add some functionality to todoist.com web application |
| Bestandsgrootte | 63.07 KB |
| Aantal Installaties | 174 |
| Huidige Versie | 0.1.1 |
| Laatst Bijgewerkt | 2014-10-20 |
| Publicatiedatum | 2014-10-20 |
| Beoordeling | 3.50/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | http://b2hq.com |
| Betalingswijze | free |
| Extensiewebsite | http://b2hq.com/ |
| Ondersteunde Talen | 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"
}
} | |