Simple Auto Refresh
lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
什么是Simple Auto Refresh?
Simple Auto Refresh是由tobias.samesch开发的Chrome扩展程序,该扩展的主要功能是“lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval”。
扩展截图
下载Simple Auto Refresh扩展crx文件
下载Simple Auto Refresh扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval. 扩展基本信息
| 名称 | |
| ID | jghdcjbendekbeopdlofjcnogeeemjgd |
| 官方URL | https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd |
| 简介 | lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval |
| 文件大小 | 10.36 KB |
| 安装次数 | 18 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2021-02-18 |
| 上架时间 | 2021-01-09 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | tobias.samesch |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Simple Auto Refresh",
"version": "1.0.3",
"description": "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval",
"permissions": [
"declarativeContent",
"storage",
"alarms",
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"options_page": "options.html",
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"24": "images\/ic_refresh_24px.png",
"16": "images\/ic_refresh_24px.png",
"32": "images\/ic_refresh_24px.png",
"48": "images\/ic_refresh_24px.png",
"128": "images\/ic_refresh_24px.png"
}
},
"icons": {
"24": "images\/ic_refresh_24px.png",
"16": "images\/ic_refresh_24px.png",
"32": "images\/ic_refresh_24px.png",
"48": "images\/ic_refresh_24px.png",
"128": "images\/ic_refresh_24px.png"
},
"manifest_version": 2
} | |