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\/*"
]
} | |