Reload All Tabs

This extension reloads all tabs in the active window.

Hvad er Reload All Tabs?

Reload All Tabs er en Chrome-udvidelse udviklet af matthewlberg, og dens hovedfunktion er "This extension reloads all tabs in the active window.".

Udvidelsesskærmbilleder

screenshot

Download Reload All Tabs-udvidelses-CRX-fil

Download Reload All Tabs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Reload All Tabs Reload All Tabs
ID lgpdljdpanfecnpindkbnikegohoobci
Officiel URL https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci
Beskrivelse This extension reloads all tabs in the active window.
Filstørrelse 4.38 KB
Antal Installationer 46,699
Nuværende Version 1.0
Senest Opdateret 2014-01-16
Udgivelsesdato 2014-01-16
Bedømmelse 4.47/5 Samlet 58 Bedømmelser
Udvikler matthewlberg
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}