Auto-Reload Target URL
Reloads a target URL every specified seconds.
什么是Auto-Reload Target URL?
Auto-Reload Target URL是由jon开发的Chrome扩展程序,该扩展的主要功能是“Reloads a target URL every specified seconds.”。
扩展截图
下载Auto-Reload Target URL扩展crx文件
下载Auto-Reload Target URL扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple tool to automatically reload the webpage in the current tab.
Supports any interval from 1 second to 10000.
The extension is open source and does not collect any information. 扩展基本信息
| 名称 | |
| ID | fbofpnajkcpnpillmmfhggjandclmjgj |
| 官方URL | https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj |
| 简介 | Reloads a target URL every specified seconds. |
| 文件大小 | 36.3 KB |
| 安装次数 | 1,299 |
| 当前版本 | 1.4.1 |
| 更新时间 | 2022-06-25 |
| 上架时间 | 2017-12-09 |
| 评分 | 4.60/5 共5次评分 |
| 开发者 | jon |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/jondb/auto-reload |
| 帮助页面URL | https://github.com/jondb/auto-reload/issues |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Auto-Reload Target URL",
"version": "1.4.1",
"manifest_version": 3,
"description": "Reloads a target URL every specified seconds.",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "stopwatch22.png",
"default_popup": "info.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"timer.js"
]
}
],
"host_permissions": [
"http:\/\/*\/*"
],
"permissions": [
"tabs",
"storage",
"alarms"
],
"icons": {
"16": "stopwatch16.png",
"48": "stopwatch48.png",
"128": "stopwatch128.png"
}
} | |