Moo.do
Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.
What is Moo.do?
Moo.do is a Chrome extension developed by https://moo.do, and its main feature is "Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.".
Extension Screenshots
Download Moo.do Extension CRX File
Download Moo.do extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension augments your Gmail to save emails into Moo.do, and adds a toolbar button to save the current page to Moo.do.
Extension Basic Information
Name | Moo.do |
ID | dfphnckjoinkfflhfbnjoiggfflnekcb |
Official URL | https://chromewebstore.google.com/detail/moodo/dfphnckjoinkfflhfbnjoiggfflnekcb |
Description | Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done. |
File Size | 211 KB |
Installation Count | 228 |
Current Version | 1.0.4 |
Last Updated | 2021-01-23 |
Publish Date | 2020-04-04 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://moo.do |
[email protected] | |
Payment Type | free |
Extension Website | https://www.moo.do |
Help Page URL | https://www.moo.do |
Privacy Policy Page URL | https://www.moo.do/privacy |
Supported Languages | 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" } ] } |