Outlook Reloader
This extension will reload the web outlook (https://outlook.office.com/owa/) periodically.
Outlook Reloaderとは何ですか?
Outlook Reloaderはtidnlyamによって開発されたChromeの拡張機能で、その主な機能は「This extension will reload the web outlook (https://outlook.office.com/owa/) periodically.」です。
拡張機能のスクリーンショット
Outlook Reloader拡張機能のCRXファイルをダウンロード
Outlook Reloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will reload the web outlook (https://outlook.office.com/owa/) periodically. 拡張機能の基本情報
| 名前 | |
| ID | hcmghgkpcoagochnpegomdhmfknmfcjc |
| 公式URL | https://chromewebstore.google.com/detail/outlook-reloader/hcmghgkpcoagochnpegomdhmfknmfcjc |
| 説明 | This extension will reload the web outlook (https://outlook.office.com/owa/) periodically. |
| ファイルサイズ | 4.87 KB |
| インストール数 | 205 |
| 現在のバージョン | 1.0.2 |
| 最終更新日 | 2019-05-14 |
| 公開日 | 2019-05-13 |
| 開発者 | tidnlyam |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/tily/outlook_reloader |
| 対応言語 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Outlook Reloader",
"description": "This extension will reload the web outlook (https:\/\/outlook.office.com\/owa\/) periodically.",
"version": "1.0.2",
"content_scripts": [
{
"matches": [
"https:\/\/outlook.office.com\/mail\/*",
"https:\/\/outlook.office365.com\/calendar\/*"
],
"js": [
"main.js"
]
}
],
"browser_action": {
"default_title": "Outlook Reloader",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"https:\/\/outlook.office.com\/mail\/*",
"https:\/\/outlook.office365.com\/calendar\/*"
]
} | |