Auto Reload IDT
Refresh automatically pages on a selected interval of seconds or specific time.
什么是Auto Reload IDT?
Auto Reload IDT是由Giovani Silva开发的Chrome扩展程序,该扩展的主要功能是“Refresh automatically pages on a selected interval of seconds or specific time.”。
扩展截图
下载Auto Reload IDT扩展crx文件
下载Auto Reload IDT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Refresh automatically pages on a selected interval of seconds or specific time. 扩展基本信息
| 名称 | |
| ID | fnkcgkngofnmodlbhmkfkloggnldomng |
| 官方URL | https://chrome.google.com/webstore/detail/auto-reload-idt/fnkcgkngofnmodlbhmkfkloggnldomng |
| 简介 | Refresh automatically pages on a selected interval of seconds or specific time. |
| 文件大小 | 47.58 KB |
| 安装次数 | 505 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2018-06-06 |
| 上架时间 | 2018-06-06 |
| 评分 | 4.25/5 共8次评分 |
| 开发者 | Giovani Silva |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Auto Reload IDT",
"description": "Refresh automatically pages on a selected interval of seconds or specific time.",
"version": "1.0.3",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"background",
"storage"
],
"browser_action": {
"default_icon": "reloadBtn.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"scripts\/inicialization.js",
"scripts\/jquery.js",
"scripts\/script.js"
]
}
],
"icons": {
"16": "reloadBtn.png",
"48": "reloadBtn.png",
"128": "reloadBtn.png"
},
"web_accessible_resources": [
"popup.html"
]
} | |