Todoist Mod
A Plugin to add some functionality to todoist.com web application
Qu'est-ce que Todoist Mod ?
Todoist Mod est une extension Chrome développée par http://b2hq.com, et sa fonction principale est "A Plugin to add some functionality to todoist.com web application".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Todoist Mod
Téléchargez les fichiers d'extension Todoist Mod au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 ... Informations de Base sur l'Extension
| Nom | |
| ID | angcidioihngmbmhjnijbeghgnkagomd |
| URL Officiel | https://chrome.google.com/webstore/detail/todoist-mod/angcidioihngmbmhjnijbeghgnkagomd |
| Description | A Plugin to add some functionality to todoist.com web application |
| Taille du Fichier | 63.07 KB |
| Nombre d'Installations | 174 |
| Version Actuelle | 0.1.1 |
| Dernière Mise à Jour | 2014-10-20 |
| Date de Publication | 2014-10-20 |
| Évaluation | 3.50/5 Total 2 Évaluations |
| Développeur | http://b2hq.com |
| Type de Paiement | free |
| Site Web de l'Extension | http://b2hq.com/ |
| Langues Prises en Charge | 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"
}
} | |