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 |
| 官方網址 | 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\/*"
]
} | |