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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple todo app that adds the selected text. A task suddenly asked to be done via chat, a ticket suddenly assigned, a sentence…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HubTodo एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}