ToDoBot - Task Management App for Slack

This extension will allow you to view and manage all your Slack ToDos right in Chrome

ما هو ToDoBot - Task Management App for Slack؟

ToDoBot - Task Management App for Slack هو إضافة Chrome تم تطويرها بواسطة OneBar Inc.، والميزة الرئيسية لها هي "This extension will allow you to view and manage all your Slack ToDos right in Chrome".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة ToDoBot - Task Management App for Slack

قم بتنزيل ملفات الامتداد ToDoBot - Task Management App for Slack بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        👉 View and manage your Slack tasks right in Chrome
👉 Create tasks for your teammates
👉 Capture your screen and share in Slack
👉 Connect other systems

Learn more about ToDoBot for Slack at https://thetodobot.com                    

معلومات أساسية عن التمديد

الاسم ToDoBot - Task Management App for Slack ToDoBot - Task Management App for Slack
ID pejlmlcjbpjfgggmiejmljgjefaehjpn
عنوان URL الرسمي https://chromewebstore.google.com/detail/todobot-task-management-a/pejlmlcjbpjfgggmiejmljgjefaehjpn
الوصف This extension will allow you to view and manage all your Slack ToDos right in Chrome
حجم الملف 2.46 MB
عدد التثبيتات 1,140
النسخة الحالية 0.0.15
آخر تحديث 2023-07-12
تاريخ النشر 2020-04-29
تقييم 5.00/5 مجموع تقييمات 1
المطور OneBar Inc.
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://thetodobot.com
عنوان صفحة المساعدة https://thetodobot.com/support
عنوان صفحة سياسة الخصوصية https://www.thetodobot.com/privacy-policy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ToDoBot - Task Management App for Slack",
    "description": "This extension will allow you to view and manage all your Slack ToDos right in Chrome",
    "version": "0.0.15",
    "icons": {
        "16": "active.png",
        "32": "active.png",
        "48": "active.png",
        "128": "active.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "cookies",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        "",
        "https:\/\/api.thetodobot.com\/"
    ],
    "background": {
        "service_worker": "background\/index.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "patches.js"
            ],
            "run_at": "document_start",
            "exclude_matches": [
                "http:\/\/localhost:4200\/tests"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "\/assets\/vendor.js",
                "\/assets\/todobot.js",
                "init.js"
            ],
            "exclude_matches": [
                "http:\/\/localhost:4200\/tests"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/assets\/todobot.css",
                "\/assets\/vendor.css",
                "\/images\/*",
                "active.png",
                "inactive.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "Open ToDoBot",
        "default_icon": "inactive.png"
    }
}