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. 拡張機能の基本情報
| 名前 | |
| ID | dfphnckjoinkfflhfbnjoiggfflnekcb |
| 公式URL | 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 |
| Eメール | [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"
}
]
} | |