Auto refresh
Automatically refresh the specified page, or only refresh the inactive TAB page.
什么是Auto refresh?
Auto refresh是由idof开发的Chrome扩展程序,该扩展的主要功能是“Automatically refresh the specified page, or only refresh the inactive TAB page.”。
扩展截图
下载Auto refresh扩展crx文件
下载Auto refresh扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically refresh the specified page, or only refresh the inactive TAB page. 扩展基本信息
| 名称 | |
| ID | mljjfcmhgefdfgeomcaocgijloggnnjk |
| 官方URL | https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk |
| 简介 | Automatically refresh the specified page, or only refresh the inactive TAB page. |
| 文件大小 | 74.91 KB |
| 安装次数 | 10,000 |
| 当前版本 | 1.0 |
| 更新时间 | 2014-11-15 |
| 上架时间 | 2014-11-15 |
| 评分 | 4.27/5 共15次评分 |
| 开发者 | idof |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"background": {
"page": "background.html",
"script": "background.js"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"default_locale": "en",
"description": "__MSG_extDescription__",
"icons": {
"128": "img\/on128.png",
"64": "img\/on64.png"
},
"manifest_version": 2,
"name": "__MSG_extName__",
"page_action": {
"default_icon": "img\/off.png",
"default_popup": "popup.html",
"default_title": "__MSG_extName__"
},
"permissions": [
"tabs",
"browsingData",
"webRequest",
"webNavigation",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.0"
} | |