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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |