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是由OneBar Inc.開發的Chrome擴展程式,該擴展的主要功能是“This extension will allow you to view and manage all your Slack ToDos right in Chrome”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載ToDoBot - Task Management App for Slack擴展crx文件

下載ToDoBot - Task Management App for Slack擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        👉 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
官方網址 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
說明頁面URL https://thetodobot.com/support
隱私政策頁面URL 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"
    }
}