Reload
A simple Reload button
什么是Reload?
Reload是由MK开发的Chrome扩展程序,该扩展的主要功能是“A simple Reload button”。
扩展截图
下载Reload扩展crx文件
下载Reload扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple Reload button, for those who want one to the right of the Address Bar. (Stop function not included; see below.)
To save RAM, the extension uses an event page rather than a persistent background page. Hopefully it won't lag during heavy disk access.
For a Stop button, see:
https://chrome.google.com/webstore/detail/stop/kkeehnmfddjhlojogndpeaklfhaokkbn
***
Changelog
0.4: Updated icons to match Chrome's new Material theme.
0.3: Removed "tabs" permission. Turns out it isn't needed to call chrome.tabs.reload. 扩展基本信息
| 名称 | |
| ID | fcofhoajikoooeongdbjbgnjpmgehgja |
| 官方URL | https://chromewebstore.google.com/detail/reload/fcofhoajikoooeongdbjbgnjpmgehgja |
| 简介 | A simple Reload button |
| 文件大小 | 7.57 KB |
| 安装次数 | 1,852 |
| 当前版本 | 0.4 |
| 更新时间 | 2021-01-15 |
| 上架时间 | 2016-11-19 |
| 评分 | 4.32/5 共22次评分 |
| 开发者 | MK |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reload",
"description": "A simple Reload button",
"version": "0.4",
"manifest_version": 2,
"icons": {
"16": "reload_16.png",
"24": "reload_24.png",
"32": "reload_32.png",
"48": "reload_48.png",
"128": "reload_128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "reload_16.png",
"24": "reload_24.png",
"32": "reload_32.png"
},
"default_title": "Reload"
}
} | |