Reload tabs

Reload all of the current window's tabs

What is Reload tabs?

Reload tabs is a Chrome extension developed by msskmlrn, and its main feature is "Reload all of the current window's tabs".

Extension Screenshots

screenshot

Download Reload tabs Extension CRX File

Download Reload tabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Reload tabs Reload tabs
ID onncmmefekihehgnljddnkbbiplicomg
Official URL https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg
Description Reload all of the current window's tabs
File Size 6.75 KB
Installation Count 31
Current Version 1.0
Last Updated 2014-06-06
Publish Date 2014-06-06
Developer msskmlrn
Payment Type free
Help Page URL https://github.com/msskmlrn/reload-tabs
Supported Languages 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"
    ]
}