ToDoBot - Task Management App for Slack

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

Was ist ToDoBot - Task Management App for Slack?

ToDoBot - Task Management App for Slack ist eine Chrome-Erweiterung, die von OneBar Inc. entwickelt wurde, und ihr Hauptmerkmal ist "This extension will allow you to view and manage all your Slack ToDos right in Chrome".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

ToDoBot - Task Management App for Slack-Erweiterungs-CRX-Datei herunterladen

Laden Sie ToDoBot - Task Management App for Slack-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        👉 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                    

Grundlegende Informationen zur Erweiterung

Name ToDoBot - Task Management App for Slack ToDoBot - Task Management App for Slack
ID pejlmlcjbpjfgggmiejmljgjefaehjpn
Offizielle URL https://chromewebstore.google.com/detail/todobot-task-management-a/pejlmlcjbpjfgggmiejmljgjefaehjpn
Beschreibung This extension will allow you to view and manage all your Slack ToDos right in Chrome
Dateigröße 2.46 MB
Installationsanzahl 1,140
Aktuelle Version 0.0.15
Letztes Update 2023-07-12
Veröffentlichungsdatum 2020-04-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler OneBar Inc.
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://thetodobot.com
Hilfeseite URL https://thetodobot.com/support
URL der Datenschutzrichtlinien-Seite https://www.thetodobot.com/privacy-policy
Unterstützte Sprachen 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"
    }
}