HubTodo
A simple todo app that adds the selected text. A task suddenly asked to be done via chat, a ticket suddenly assigned, a sentence…
HubTodo란 무엇입니까?
HubTodo은(는) yhzz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple todo app that adds the selected text. A task suddenly asked to be done via chat, a ticket suddenly assigned, a sentence…"입니다.
확장 프로그램 스크린샷
HubTodo 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple todo app that adds the selected text. A task suddenly asked to be done via chat, a ticket suddenly assigned, a sentence on a website that you are curious about that you are going to deal with later, etc... Today, there are many different types of communication tools. All of them generate todo, but there doesn't seem to be a todo app in the world yet that can unify all of them and queue them up easily and securely. I don't want something that works with all those SaaS todo. I just want a todo app that allows me to queue up selected text as a todo. This chrome extension fills that need. After installing it, select a sentence on a website and click "add hub todo task" in the context menu to add the task to your todo. The added todo tasks will be listed in the extension popup in the upper right corner. Click the link button on the list, and the page will move to a new tab where the selected sentence will be highlighted using the "Scroll To Text Fragment". Todo lists can be deleted and reordered by dragging, and the lists are synchronized by Chrome. CHANGELOG v1.0.0 - Added the feature to add todo from the address bar (omnibox) as well. v1.0.1 - Fixed permissions and icon
확장 프로그램 기본 정보
이름 | HubTodo |
ID | okijpcnljeplafffpflgiagccbddgenm |
공식 URL | https://chromewebstore.google.com/detail/hubtodo/okijpcnljeplafffpflgiagccbddgenm |
설명 | A simple todo app that adds the selected text. A task suddenly asked to be done via chat, a ticket suddenly assigned, a sentence… |
파일 크기 | 345 KB |
설치 횟수 | 48 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2021-08-19 |
출시 날짜 | 2021-08-14 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | yhzz |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/yhzz/hub-to-do |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "HubToDo", "name": "HubTodo", "permissions": [ "contextMenus", "storage" ], "manifest_version": 2, "version": "1.0.1", "browser_action": { "default_popup": "index.html", "default_title": "HubToDo", "default_icon": "icon.png" }, "background": { "scripts": [ "\/static\/js\/background_script.js" ] }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "omnibox": { "keyword": "todo" } } |