Simple Reloader
Automatically reloads the current tab as needed.
什么是Simple Reloader?
Simple Reloader是由Drew Cossey开发的Chrome扩展程序,该扩展的主要功能是“Automatically reloads the current tab as needed.”。
扩展截图
下载Simple Reloader扩展crx文件
下载Simple Reloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A quick and simple automatic page reloader. Reloading the page manually, or navigating to another page in the same tab will reset the countdown.
Can optionally tell the browser to ignore the browser cache for the reloads. 扩展基本信息
| 名称 | |
| ID | jdcjnkmfkfnidklnngnbecledmanndnm |
| 官方URL | https://chrome.google.com/webstore/detail/simple-reloader/jdcjnkmfkfnidklnngnbecledmanndnm |
| 简介 | Automatically reloads the current tab as needed. |
| 文件大小 | 53.26 KB |
| 安装次数 | 481 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2015-04-29 |
| 上架时间 | 2015-04-29 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Drew Cossey |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Simple Reloader",
"version": "1.0.1",
"description": "Automatically reloads the current tab as needed.",
"permissions": [
"tabs"
],
"icons": {
"16": "images\/icon16.png",
"19": "images\/icon19.png",
"38": "images\/icon38.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"browser_action": {
"default_title": "Reloadit",
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"19": "images\/icon19.png",
"38": "images\/icon38.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"background": {
"scripts": [
"jquery-1.11.1.min.js",
"background.js"
],
"persistent": true
}
} | |