Moo.do
Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.
Apa itu Moo.do?
Moo.do adalah ekstensi Chrome yang dikembangkan oleh https://moo.do, dan fitur utamanya adalah "Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Moo.do
Unduh file ekstensi Moo.do dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension augments your Gmail to save emails into Moo.do, and adds a toolbar button to save the current page to Moo.do.
Informasi Dasar Ekstensi
Nama | Moo.do |
ID | dfphnckjoinkfflhfbnjoiggfflnekcb |
URL Resmi | https://chromewebstore.google.com/detail/moodo/dfphnckjoinkfflhfbnjoiggfflnekcb |
Deskripsi | Moo.do brings your Tasks, Email, and Calendar together so you can focus on getting things done. |
Ukuran File | 211 KB |
Jumlah Instalasi | 228 |
Versi Saat Ini | 1.0.4 |
Terakhir Diperbarui | 2021-01-23 |
Tanggal Publikasi | 2020-04-04 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | https://moo.do |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.moo.do |
URL Halaman Bantuan | https://www.moo.do |
URL Halaman Kebijakan Privasi | https://www.moo.do/privacy |
Bahasa yang Didukung | 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" } ] } |