Reload All Tabs

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

Τι είναι το Reload All Tabs;

Το Reload All Tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://mohamedmansour.com, και η κύρια λειτουργία του είναι "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Reload All Tabs

Λήψη αρχείων επέκτασης Reload All Tabs σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Reload All Tabs Reload All Tabs
ID midkcinmplflbiflboepnahkboeonkam
Επίσημο URL https://chromewebstore.google.com/detail/reload-all-tabs/midkcinmplflbiflboepnahkboeonkam
Περιγραφή Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.
Μέγεθος Αρχείου 24.38 KB
Αριθμός Εγκαταστάσεων 111,178
Τρέχουσα Έκδοση 5.0.0
Τελευταία Ενημέρωση 2021-05-06
Ημερομηνία Δημοσίευσης 2020-06-01
Αξιολόγηση 4.39/5 Συνολικά 229 Αξιολογήσεις
Προγραμματιστής https://mohamedmansour.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://github.com/mohamedmansour/reload-all-tabs-extension/
Διεύθυνση URL της Σελίδας Βοήθειας http://github.com/mohamedmansour/reload-all-tabs-extension/issues
URL της Σελίδας Πολιτικής Απορρήτου https://mohamedmansour.com/extensions/privacy.html
Υποστηριζόμενες Γλώσσες 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"
        }
    }
}