Reload All Tabs

Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.

Cos'è Reload All Tabs?

Reload All Tabs è un'estensione di Chrome sviluppata da https://mohamedmansour.com, e la sua funzione principale è "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Reload All Tabs

Scarica i file di estensione Reload All Tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        If you want to remove the browser action button (top right), just right click and choose "Hide button".

FOLLOW ME ON TWITTER: https://twitter.com/mohamedmansour
SOURCE CODE: http://goo.gl/dGDD (GitHub)

Ways to Reload All Tabs:
 - Right click, choose "Reload this window", you can add more options, read next section.
 - The Blue arrow Icon on the Extension Bar top right (Click on it)
 - Keyboard Shortcut: Alt+Shift+R (you need to initially set it manually)

Add more Context Menus Configurable in Options (enable whatever you want):
 - Reload all tabs in current window
 - Reload all tabs in all windows
 - Reload only pinned or unpinned tabs in current window
 - Reload all tabs to the left or right
 - Reload tabs on startup
 - Allow clearing (bypass) cache while reload.
 - Close tabs to the left or right

Modify the Keyboard Shortcut:
 - To make it even more secure, we removed all content script permissions, and used chrome commands instead.
 - Visit chrome://extensions/shortcuts in Chrome to update the combination to anything you want!                    

Informazioni di Base sull'Estensione

Nome Reload All Tabs Reload All Tabs
ID midkcinmplflbiflboepnahkboeonkam
URL Ufficiale https://chromewebstore.google.com/detail/reload-all-tabs/midkcinmplflbiflboepnahkboeonkam
Descrizione Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.
Dimensione del File 24.38 KB
Conteggio Installazioni 111,178
Versione Corrente 5.0.0
Ultimo Aggiornamento 2021-05-06
Data di Pubblicazione 2020-06-01
Valutazione 4.39/5 Totale 229 Valutazioni
Sviluppatore https://mohamedmansour.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/mohamedmansour/reload-all-tabs-extension/
URL della Pagina di Aiuto http://github.com/mohamedmansour/reload-all-tabs-extension/issues
URL della Pagina della Politica sulla Privacy https://mohamedmansour.com/extensions/privacy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reload All Tabs",
    "version": "5.0.0",
    "manifest_version": 3,
    "description": "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "action": {
        "default_icon": "img\/icon128.png",
        "default_title": "Reload All Tabs"
    },
    "background": {
        "service_worker": "reload_controller.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "commands": {
        "reload": {
            "suggested_key": {
                "default": "Ctrl+Shift+R",
                "mac": "Command+Shift+R"
            },
            "description": "Toggle reload"
        }
    }
}