Reload tabs

Reload all of the current window's tabs

什麼是Reload tabs?

Reload tabs是由msskmlrn開發的Chrome擴展程式,該擴展的主要功能是“Reload all of the current window's tabs”。

擴展截圖

screenshot

下載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 Reload tabs
ID onncmmefekihehgnljddnkbbiplicomg
官方網址 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"
    ]
}