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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
    }
}