Moo.do

Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.

Moo.doคืออะไร?

Moo.do เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://moo.do และคุณลักษณะหลักของมันคือ "Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Moo.do

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

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

                        This extension augments your Gmail to save emails into Moo.do, and adds a toolbar button to save the current page to Moo.do.                    

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

ชื่อ Moo.do Moo.do
ID dfphnckjoinkfflhfbnjoiggfflnekcb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/moodo/dfphnckjoinkfflhfbnjoiggfflnekcb
คำอธิบาย Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.
ขนาดไฟล์ 211 KB
จำนวนการติดตั้ง 228
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2021-01-23
วันที่เผยแพร่ 2020-04-04
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://moo.do
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.moo.do
URL หน้าช่วยเหลือ https://www.moo.do
URL หน้านโยบายความเป็นส่วนตัว https://www.moo.do/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Moo.do",
    "author": "Moo.do",
    "version": "1.0.4",
    "description": "Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.",
    "icons": {
        "128": "assets\/icon-128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/"
    ],
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Save to Moo.do",
        "default_icon": "assets\/icon-blue.png"
    },
    "web_accessible_resources": [
        "iframe.html",
        "assets\/icon-128.png"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "assets\/inboxsdk.js",
                "gmail.js"
            ],
            "css": [
                "assets\/styles.css"
            ],
            "run_at": "document_end"
        }
    ]
}