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.”。
擴展截圖
下載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 |
ID | dfphnckjoinkfflhfbnjoiggfflnekcb |
官方網址 | 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" } ] } |