Reload All Tabs
This extension reloads all tabs in the active window.
What is Reload All Tabs?
Reload All Tabs is a Chrome extension developed by matthewlberg, and its main feature is "This extension reloads all tabs in the active window.".
Extension Screenshots
Download Reload All Tabs Extension CRX File
Download Reload All 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
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.
Extension Basic Information
Name | Reload All Tabs |
ID | lgpdljdpanfecnpindkbnikegohoobci |
Official URL | https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci |
Description | This extension reloads all tabs in the active window. |
File Size | 4.38 KB |
Installation Count | 46,699 |
Current Version | 1.0 |
Last Updated | 2014-01-16 |
Publish Date | 2014-01-16 |
Rating | 4.47/5 Total 58 Ratings |
Developer | matthewlberg |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |