Moo.do

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

Was ist Moo.do?

Moo.do ist eine Chrome-Erweiterung, die von https://moo.do entwickelt wurde, und ihr Hauptmerkmal ist "Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.".

Erweiterungsscreenshots

screenshot

Moo.do-Erweiterungs-CRX-Datei herunterladen

Laden Sie Moo.do-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Moo.do Moo.do
ID dfphnckjoinkfflhfbnjoiggfflnekcb
Offizielle URL https://chromewebstore.google.com/detail/moodo/dfphnckjoinkfflhfbnjoiggfflnekcb
Beschreibung Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.
Dateigröße 211 KB
Installationsanzahl 228
Aktuelle Version 1.0.4
Letztes Update 2021-01-23
Veröffentlichungsdatum 2020-04-04
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://moo.do
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.moo.do
Hilfeseite URL https://www.moo.do
URL der Datenschutzrichtlinien-Seite https://www.moo.do/privacy
Unterstützte Sprachen 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"
        }
    ]
}