Moo.do

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

Wat is Moo.do?

Moo.do is een Chrome-extensie ontwikkeld door https://moo.do, en de belangrijkste functie is "Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Moo.do

Download Moo.do-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Moo.do Moo.do
ID dfphnckjoinkfflhfbnjoiggfflnekcb
Officiële URL https://chromewebstore.google.com/detail/moodo/dfphnckjoinkfflhfbnjoiggfflnekcb
Beschrijving Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.
Bestandsgrootte 211 KB
Aantal Installaties 228
Huidige Versie 1.0.4
Laatst Bijgewerkt 2021-01-23
Publicatiedatum 2020-04-04
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://moo.do
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.moo.do
Help Pagina-URL https://www.moo.do
URL van de Privacybeleid Pagina https://www.moo.do/privacy
Ondersteunde Talen 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"
        }
    ]
}