Super Refresh

Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.

Co je Super Refresh?

Super Refresh je rozšíření Chrome vyvinuté Karl Dreher, a jeho hlavní funkcí je „Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Super Refresh

Stáhněte si soubory rozšíření Super Refresh ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Either click the extension icon, or use the keyboard shortcut (default: Ctrl-Shift-5) to refresh all tabs in the open window. As of version 1.1.1 you are able to set options for the extension:

Include Tabs with Audio (default: Off): This setting allows refreshing only tabs that are not audible. Refresh your tabs while not interrupting your music!

Always bypass cache (default: Off): Control whether you want to bypass cache whenever Super Refresh is invoked.                    

Základní Informace o Rozšíření

Název Super Refresh Super Refresh
ID dacnjaopeolhngffkagipnnlilhlmkhg
Oficiální URL https://chromewebstore.google.com/detail/super-refresh/dacnjaopeolhngffkagipnnlilhlmkhg
Popis Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.
Velikost souboru 17.54 KB
Počet instalací 30
Aktuální Verze 1.1.1
Poslední Aktualizace 2021-05-16
Datum Vydání 2021-01-26
Hodnocení 4.50/5 Celkem 2 Hodnocení
Vývojář Karl Dreher
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/karldreher/Super-Refresh
URL Stránky Nápovědy https://github.com/karldreher/Super-Refresh/issues
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Super Refresh",
    "version": "1.1.1",
    "description": "Refresh all the tabs!  Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "commands": {
        "refreshAll": {
            "suggested_key": {
                "default": "Shift+Ctrl+5"
            },
            "description": "Refresh all the tabs!"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}