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
官方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
帮助页面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"
    }
}