Reload All Tabs

This extension reloads all tabs in the active window.

Wat is Reload All Tabs?

Reload All Tabs is een Chrome-extensie ontwikkeld door matthewlberg, en de belangrijkste functie is "This extension reloads all tabs in the active window.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Reload All Tabs

Download Reload All Tabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Reload All Tabs Reload All Tabs
ID lgpdljdpanfecnpindkbnikegohoobci
Officiële URL https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci
Beschrijving This extension reloads all tabs in the active window.
Bestandsgrootte 4.38 KB
Aantal Installaties 46,699
Huidige Versie 1.0
Laatst Bijgewerkt 2014-01-16
Publicatiedatum 2014-01-16
Beoordeling 4.47/5 Totaal 58 Beoordelingen
Ontwikkelaar matthewlberg
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}