ToDoBot - Task Management App for Slack

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

Qu'est-ce que ToDoBot - Task Management App for Slack ?

ToDoBot - Task Management App for Slack est une extension Chrome développée par OneBar Inc., et sa fonction principale est "This extension will allow you to view and manage all your Slack ToDos right in Chrome".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ToDoBot - Task Management App for Slack

Téléchargez les fichiers d'extension ToDoBot - Task Management App for Slack au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        👉 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                    

Informations de Base sur l'Extension

Nom ToDoBot - Task Management App for Slack ToDoBot - Task Management App for Slack
ID pejlmlcjbpjfgggmiejmljgjefaehjpn
URL Officiel https://chromewebstore.google.com/detail/todobot-task-management-a/pejlmlcjbpjfgggmiejmljgjefaehjpn
Description This extension will allow you to view and manage all your Slack ToDos right in Chrome
Taille du Fichier 2.46 MB
Nombre d'Installations 1,140
Version Actuelle 0.0.15
Dernière Mise à Jour 2023-07-12
Date de Publication 2020-04-29
Évaluation 5.00/5 Total 1 Évaluations
Développeur OneBar Inc.
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://thetodobot.com
URL de la Page d'Aide https://thetodobot.com/support
URL de la Page de Politique de Confidentialité https://www.thetodobot.com/privacy-policy
Langues Prises en Charge 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"
    }
}