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 |
Eメール | [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" ] } |