Todoist for Everything

Todoist Extension for reporting tasks from common tools like Gmail, Slack, Jira, Confluence and any generic website.

Todoist for Everythingคืออะไร?

Todoist for Everything เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jan Skrabal และคุณลักษณะหลักของมันคือ "Todoist Extension for reporting tasks from common tools like Gmail, Slack, Jira, Confluence and any generic website."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Todoist for Everything

ดาวน์โหลดไฟล์ส่วนขยาย Todoist for Everything ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Todoist Extension for reporting tasks from any website with extended support for tools like Gmail, Slack, Jira and Confluence. More details can be found at https://github.com/Skamaniak/TodoistChromeExtension/wiki.

 Some icons were made by Smashicons (https://www.flaticon.com/authors/smashicons).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Todoist for Everything Todoist for Everything
ID olbmolkpipedecpbmkmobdadpkbdgkkc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/todoist-for-everything/olbmolkpipedecpbmkmobdadpkbdgkkc
คำอธิบาย Todoist Extension for reporting tasks from common tools like Gmail, Slack, Jira, Confluence and any generic website.
ขนาดไฟล์ 119 KB
จำนวนการติดตั้ง 191
เวอร์ชันปัจจุบัน 1.3.2
อัปเดตครั้งล่าสุด 2022-10-11
วันที่เผยแพร่ 2020-04-14
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Jan Skrabal
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Skamaniak/TodoistChromeExtension
URL หน้าช่วยเหลือ https://github.com/Skamaniak/TodoistChromeExtension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Todoist for Everything",
    "version": "1.3.2",
    "description": "Todoist Extension for reporting tasks from common tools like Gmail, Slack, Jira, Confluence and any generic website.",
    "permissions": [
        "storage",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "notifications"
    ],
    "background": {
        "scripts": [
            "scripts\/logger.js",
            "scripts\/configStoreMigration.js",
            "scripts\/configStoreApi.js",
            "scripts\/messageBus.js",
            "scripts\/backend\/pluginIconController.js",
            "scripts\/backend\/contentScriptInjector.js",
            "scripts\/backend\/alertManager.js",
            "scripts\/backend\/todoistClient.js",
            "scripts\/backend\/todoistTaskFormatter.js",
            "scripts\/backend\/todoistProjectProvider.js",
            "scripts\/backend\/backend.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/logger.js",
                "scripts\/messageBus.js",
                "scripts\/content\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "32": "images\/plugin-icon-32.png",
            "64": "images\/plugin-icon-64.png",
            "128": "images\/plugin-icon-128.png"
        }
    },
    "icons": {
        "32": "images\/plugin-icon-32.png",
        "64": "images\/plugin-icon-64.png",
        "128": "images\/plugin-icon-128.png"
    },
    "manifest_version": 2
}