Todoist Mod

A Plugin to add some functionality to todoist.com web application

Todoist Modคืออะไร?

Todoist Mod เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://b2hq.com และคุณลักษณะหลักของมันคือ "A Plugin to add some functionality to todoist.com web application"

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

screenshot

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

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

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

                        Todoist Mod is an *UNOFFICIAL* extension which should add some functionality to todoist.com site, some stuff I personally miss ... for now it adds the ability to define a default priority for tasks and some css tweaks. I plan to add more options as I stumble upon missing features ...                    

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

ชื่อ Todoist Mod Todoist Mod
ID angcidioihngmbmhjnijbeghgnkagomd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/todoist-mod/angcidioihngmbmhjnijbeghgnkagomd
คำอธิบาย A Plugin to add some functionality to todoist.com web application
ขนาดไฟล์ 63.07 KB
จำนวนการติดตั้ง 174
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2014-10-20
วันที่เผยแพร่ 2014-10-20
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา http://b2hq.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://b2hq.com/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Todoist Mod",
    "description": "A Plugin to add some functionality to todoist.com web application",
    "version": "0.1.1",
    "permissions": [
        "https:\/\/todoist.com\/",
        "http:\/\/todoist.com\/"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/todoist.com\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "main.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}