Todoist Mod
A Plugin to add some functionality to todoist.com web application
Hvad er Todoist Mod?
Todoist Mod er en Chrome-udvidelse udviklet af http://b2hq.com, og dens hovedfunktion er "A Plugin to add some functionality to todoist.com web application".
Udvidelsesskærmbilleder
Download Todoist Mod-udvidelses-CRX-fil
Download Todoist Mod-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 ... Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | angcidioihngmbmhjnijbeghgnkagomd |
| Officiel URL | https://chrome.google.com/webstore/detail/todoist-mod/angcidioihngmbmhjnijbeghgnkagomd |
| Beskrivelse | A Plugin to add some functionality to todoist.com web application |
| Filstørrelse | 63.07 KB |
| Antal Installationer | 174 |
| Nuværende Version | 0.1.1 |
| Senest Opdateret | 2014-10-20 |
| Udgivelsesdato | 2014-10-20 |
| Bedømmelse | 3.50/5 Samlet 2 Bedømmelser |
| Udvikler | http://b2hq.com |
| Betalingsmetode | free |
| Udvidelseswebsted | http://b2hq.com/ |
| Understøttede Sprog | 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"
}
} | |