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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://www.moo.do
عنوان صفحة سياسة الخصوصية 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"
        }
    ]
}