Reload All Tabs

This extension reloads all tabs in the active window.

什么是Reload All Tabs?

Reload All Tabs是由matthewlberg开发的Chrome扩展程序,该扩展的主要功能是“This extension reloads all tabs in the active window.”。

扩展截图

screenshot

下载Reload All Tabs扩展crx文件

下载Reload All Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension allows you to refresh all tabs with a simple click of a button. You can also use the keyboard shortcut Alt + Shift + R to reload all tabs.                    

扩展基本信息

名称 Reload All Tabs Reload All Tabs
ID lgpdljdpanfecnpindkbnikegohoobci
官方URL https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci
简介 This extension reloads all tabs in the active window.
文件大小 4.38 KB
安装次数 46,699
当前版本 1.0
更新时间 2014-01-16
上架时间 2014-01-16
评分 4.47/5 共58次评分
开发者 matthewlberg
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload All Tabs",
    "description": "This extension reloads all tabs in the active window.",
    "version": "1.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "Reload all tabs"
        }
    },
    "permissions": [
        "tabs",
        "background"
    ]
}