Todoist Mod

A Plugin to add some functionality to todoist.com web application

What is Todoist Mod?

Todoist Mod is a Chrome extension developed by http://b2hq.com, and its main feature is "A Plugin to add some functionality to todoist.com web application".

Extension Screenshots

screenshot

Download Todoist Mod Extension CRX File

Download Todoist Mod extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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 ...                    

Extension Basic Information

Name Todoist Mod Todoist Mod
ID angcidioihngmbmhjnijbeghgnkagomd
Official URL https://chrome.google.com/webstore/detail/todoist-mod/angcidioihngmbmhjnijbeghgnkagomd
Description A Plugin to add some functionality to todoist.com web application
File Size 63.07 KB
Installation Count 174
Current Version 0.1.1
Last Updated 2014-10-20
Publish Date 2014-10-20
Rating 3.50/5 Total 2 Ratings
Developer http://b2hq.com
Payment Type free
Extension Website http://b2hq.com/
Supported Languages 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"
    }
}