Task Sender

Chrome extension for send new task from selected text to most popular task managers.

What is Task Sender?

Task Sender is a Chrome extension developed by bipycxp, and its main feature is "Chrome extension for send new task from selected text to most popular task managers.".

Extension Screenshots

screenshot

Download Task Sender Extension CRX File

Download Task Sender 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

                        Supported task managers:
Todoist.com - Send to Inbox
Asana.com - Send to Personal Projects                    

Extension Basic Information

Name Task Sender Task Sender
ID hdheojbijphhfgiohkcbpkebeojjnlak
Official URL https://chromewebstore.google.com/detail/task-sender/hdheojbijphhfgiohkcbpkebeojjnlak
Description Chrome extension for send new task from selected text to most popular task managers.
File Size 759 KB
Installation Count 13
Current Version 1.0.0
Last Updated 2015-08-07
Publish Date 2015-08-07
Rating 2.67/5 Total 3 Ratings
Developer bipycxp
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0.0",
    "name": "Task Sender",
    "description": "Chrome extension for send new task from selected text to most popular task managers.",
    "permissions": [
        "contextMenus",
        "notifications",
        ""
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "img\/icons\/16.png",
        "48": "img\/icons\/48.png",
        "128": "img\/icons\/128.png"
    },
    "background": {
        "page": "html\/background.html"
    },
    "options_page": "html\/settings.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/todoist.com\/robots.txt*",
                "*:\/\/app.asana.com\/robots.txt*"
            ],
            "js": [
                "js\/content\/robots.js"
            ]
        }
    ],
    "commands": {
        "todoistTask": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Send task to Todoist"
        },
        "asanaTask": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Send task to Asana"
        }
    }
}