Send to Todoist
Quickly create tasks in Todoist
什么是Send to Todoist?
Send to Todoist是由Hipsterbrown开发的Chrome扩展程序,该扩展的主要功能是“Quickly create tasks in Todoist”。
扩展截图
下载Send to Todoist扩展crx文件
下载Send to Todoist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Send to Todoist helps you quickly add tasks to your projects The official Todoist extension is great for managing your projects and completing tasks, however it is missing useful shortcuts for adding tasks quickly to your various projects. The API key stays stored in secure browser storage and never leaves your computer. You can find this key here: https://todoist.com/prefs/integrations This extension adds context menus that appear for highlighted text, links, or just right-clicking on the page. - Highlighted text will be used as the title for the created task. - Link text will be used as the content, with the URL for the link appended to the end of the task name. - The page title will be used as the task title, with the page URL used to make that title a link. If you have multiple projects, you can use the shortcut keys (numbers next to the project name) to quickly choose a project and due date! See the screenshots for examples. To quickly add a page as a task in your Inbox, use the keyboard shortcut: Cmd+Shift+I (Ctrl+Shift+I on Linux and Windows)
扩展基本信息
名称 | |
ID | maidnngmledliojijemaeghecjhhndaf |
官方URL | https://chrome.google.com/webstore/detail/maidnngmledliojijemaeghecjhhndaf |
简介 | Quickly create tasks in Todoist |
文件大小 | 93.17 KB |
安装次数 | 68 |
当前版本 | 1.10.1 |
更新时间 | 2021-04-26 |
上架时间 | 2021-02-16 |
评分 | 5.00/5 共1次评分 |
开发者 | Hipsterbrown |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/HipsterBrown/send-to-todoist |
帮助页面URL | https://github.com/HipsterBrown/send-to-todoist |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Send to Todoist", "description": "Quickly create tasks in Todoist", "version": "1.10.1", "applications": { "gecko": { "id": "[email protected]" } }, "browser_action": { "browser_style": true, "default_title": "Send to Todoist", "default_popup": "build\/popup\/index.html", "default_icon": { "48": "icons\/SendToTodoist.png", "96": "icons\/[email protected]" } }, "background": { "scripts": [ "build\/background\/index.js" ] }, "commands": { "save-page": { "suggested_key": { "default": "Ctrl+Shift+I" }, "description": "Create an Inbox task for the current page" } }, "options_ui": { "page": "build\/options\/index.html", "open_in_tab": true, "browser_style": true }, "icons": { "48": "icons\/SendToTodoist.png", "96": "icons\/[email protected]" }, "permissions": [ "activeTab", "contextMenus", "menus", "notifications", "storage" ] } |