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.

Vad är Super Refresh?

Super Refresh är en Chrome-tillägg utvecklad av Karl Dreher, och dess huvudfunktion är "Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.".

Tilläggsskärmbilder

screenshot

Ladda ner Super Refresh-förlängningens CRX-fil

Ladda ner Super Refresh-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Super Refresh Super Refresh
ID dacnjaopeolhngffkagipnnlilhlmkhg
Officiell webbadress https://chromewebstore.google.com/detail/super-refresh/dacnjaopeolhngffkagipnnlilhlmkhg
Beskrivning Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.
Filstorlek 17.54 KB
Antal Installationer 30
Aktuell Version 1.1.1
Senast Uppdaterad 2021-05-16
Publiceringsdatum 2021-01-26
Betyg 4.50/5 Totalt 2 Betyg
Utvecklare Karl Dreher
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/karldreher/Super-Refresh
Hjälpsida URL https://github.com/karldreher/Super-Refresh/issues
Stödda Språk 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"
    ]
}