Moo.do

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

什么是Moo.do?

Moo.do是由https://moo.do开发的Chrome扩展程序,该扩展的主要功能是“Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.”。

扩展截图

screenshot

下载Moo.do扩展crx文件

下载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"
        }
    ]
}