Reload tabs
Reload all of the current window's tabs
什么是Reload tabs?
Reload tabs是由msskmlrn开发的Chrome扩展程序,该扩展的主要功能是“Reload all of the current window's tabs”。
扩展截图
下载Reload tabs扩展crx文件
下载Reload tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Reload all of the current window's tabs by pressing the icon or using the Ctrl+Shift+E shortcut. You can change the default shortcut to something else by opening the extensions page (chrome://extensions/) and clicking the keyboard shortcuts link in the bottom right corner of the page. From there, find the Reload tabs extension and enter a keyboard shortcut of your choosing. The source code can be found at https://github.com/msskmlrn/reload-tabs.
扩展基本信息
名称 | Reload tabs |
ID | onncmmefekihehgnljddnkbbiplicomg |
官方URL | https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg |
简介 | Reload all of the current window's tabs |
文件大小 | 6.75 KB |
安装次数 | 31 |
当前版本 | 1.0 |
更新时间 | 2014-06-06 |
上架时间 | 2014-06-06 |
开发者 | msskmlrn |
付费类型 | free |
帮助页面URL | https://github.com/msskmlrn/reload-tabs |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reload tabs", "short_name": "Reload tabs", "version": "1.0", "description": "Reload all of the current window's tabs", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "reload.js" ], "persistent": false }, "commands": { "reload-tabs": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" }, "description": "Reload tabs" } }, "permissions": [ "tabs" ] } |